home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / ld / dist / ld.c.new < prev    next >
Encoding:
Text File  |  1990-03-21  |  138.3 KB  |  5,141 lines

  1. /* Linker `ld' for GNU
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 1, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Written by Richard Stallman with some help from Eric Albert.
  19.    Set, indirect, and warning symbol features added by Randy Smith.  */
  20.  
  21. #include <ar.h>
  22. #include <stdio.h>
  23. #include <sys/types.h>
  24. #include <sys/stat.h>
  25. #include <sys/file.h>
  26. #ifndef sony_news
  27. #include <fcntl.h>
  28. #endif
  29.  
  30. #define TARGET_VAX              1
  31. #define TARGET_SUN2             2
  32. #define TARGET_SUN3             3
  33. #define TARGET_SUN4             4
  34. #define TARGET_ALTOS            5
  35. #define TARGET_I386             6   
  36. #define TARGET_HPUX             7
  37. #define TARGET_SONY_NEWS        8
  38.  
  39. /*
  40.  * If `TARGET_MACHINE' was not defined on the compiler command line,
  41.  * then set it equal to the host machine.
  42.  */
  43. #ifndef TARGET_MACHINE
  44. #if defined(sun) && defined(sparc)
  45. #define TARGET_MACHINE  TARGET_SUN4
  46. #endif
  47. #if defined(sun) && (defined(m68020) || defined(mc68020))
  48. #define TARGET_MACHINE  TARGET_SUN3
  49. #endif
  50. #if defined(sun) && (defined(m68010) || defined(mc68010))
  51. #define TARGET_MACHINE  TARGET_SUN2
  52. #endif
  53. #if defined(ALTOS)
  54. #define TARGET_MACHINE  TARGET_ALTOS
  55. #endif
  56. #if defined(hpux)
  57. #define TARGET_MACHINE  TARGET_HPUX
  58. #endif
  59. #if defined(is386)
  60. #define TARGET_MACHINE  TARGET_I386
  61. #endif
  62. #if defined(sony_news)
  63. #define TARGET_MACHINE  TARGET_SONY_NEWS
  64. #endif
  65. #if defined(sequent)
  66. #define TARGET_MACHINE  TARGET_SEQUENT
  67. #endif
  68. #if defined(is68k) && !defined(TARGET_MACHINE)
  69. #define TARGET_MACHINE  TARGET_68K
  70. #endif
  71. #endif
  72.  
  73. #ifndef TARGET_MACHINE
  74.     CANNOT COMPILE, NO TARGET MACHINE SPECIFIED
  75. #endif
  76.  
  77. #ifndef BIG_ENDIAN
  78. #define BIG_ENDIAN      4321
  79. #endif
  80. #ifndef LITTLE_ENDIAN
  81. #define LITTLE_ENDIAN   1234
  82. #endif
  83. #ifndef PDP_ENDIAN
  84. /* I think it is unlikely that anybody will try to cross compile
  85.  * to or from a pdp, so only big-endian and little-endian are supported. */
  86. #define PDP_ENDIAN   3412
  87. #endif
  88.  
  89. #if TARGET_MACHINE==TARGET_SUN4         || \
  90.     TARGET_MACHINE==TARGET_SUN3         || \
  91.     TARGET_MACHINE==TARGET_SUN2         || \
  92.     TARGET_MACHINE==TARGET_ALTOS        || \
  93.     TARGET_MACHINE==TARGET_HPUX         || \
  94.     TARGET_MACHINE==TARGET_SONY_NEWS    || \
  95.     TARGET_MACHINE==TARGET_68K
  96. #define TARGET_BYTE_ORDER       BIG_ENDIAN
  97. #endif
  98.  
  99. #if TARGET_MACHINE==TARGET_VAX          || \
  100.     TARGET_MACHINE==TARGET_I386
  101. #define TARGET_BYTE_ORDER       LITTLE_ENDIAN
  102. #endif
  103.  
  104. #if TARGET_MACHINE==TARGET_SUN3
  105. #define TARGET_PAGE_SIZE    0x2000
  106. #endif
  107.  
  108. #if defined(sparc)      || \
  109.     defined(m68000)     || \
  110.     defined(mc68000)    || \
  111.     defined(m68010)     || \
  112.     defined(mc68010)    || \
  113.     defined(m68020)     || \
  114.     defined(mc68020)    || \
  115.     defined(is68k)      || \
  116.     defined(hpux)       || \
  117.     defined(sony_news)
  118. #define HOST_BYTE_ORDER     BIG_ENDIAN
  119. #endif
  120.  
  121. #if defined(vax)        || \
  122.     defined(is386)      || \
  123.     defined(ds3100)     
  124. #define HOST_BYTE_ORDER     LITTLE_ENDIAN
  125. #endif
  126.  
  127. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  128. static void fix_byte_order();
  129. static void fix_exec_header_byte_order();
  130. static void fix_symbol_byte_order();
  131. static void target_to_host_reloc_byte_order();
  132. static void host_to_target_reloc_byte_order();
  133. static void fix_symbol_root_byte_order();
  134. #endif
  135.  
  136. #ifdef COFF_ENCAPSULATE
  137. #include "a.out.encap.h"
  138. #else
  139. #ifdef sprite
  140. #if TARGET_MACHINE==TARGET_SUN4
  141. #include <sun4.md/a.out.h>
  142. #elif TARGET_MACHINE==TARGET_SUN3
  143. #include <sun3.md/a.out.h>
  144. #endif
  145. #else
  146. #include <a.out.h>
  147. #endif
  148. #endif
  149.  
  150. #ifdef sprite
  151. #undef NEW_SEG_SIZE
  152. #if TARGET_MACHINE==TARGET_SUN4
  153. #define NEW_SEG_SIZE    0x40000
  154. #endif
  155. #if TARGET_MACHINE==TARGET_SUN3
  156. #define NEW_SEG_SIZE    0x20000
  157. #endif
  158. #endif  /* sprite */
  159.  
  160. #ifndef N_SET_MAGIC
  161. #define N_SET_MAGIC(exec, val)  ((exec).a_magic = val)
  162. #endif
  163.  
  164. /* If compiled with GNU C, use the built-in alloca */
  165. #ifdef __GNUC__
  166. #define alloca __builtin_alloca
  167. #endif
  168.  
  169. /* Always use the GNU version of debugging symbol type codes, if possible.  */
  170.  
  171. #include "stab.h"
  172. #define CORE_ADDR unsigned long    /* For symseg.h */
  173. #include "symseg.h"
  174.  
  175. #ifdef USG
  176. #include <string.h>
  177. #else
  178. #include <strings.h>
  179. #endif
  180.  
  181. /* Determine whether we should attempt to handle (minimally)
  182.    N_BINCL and N_EINCL.  */
  183.  
  184. #if defined (__GNU_STAB__) || defined (N_BINCL)
  185. #define HAVE_SUN_STABS
  186. #endif
  187.  
  188. #define min(a,b) ((a) < (b) ? (a) : (b))
  189.  
  190. /* Macro to control the number of undefined references printed */
  191. #define MAX_UREFS_PRINTED    10
  192.  
  193. /* Size of a page; obtained from the operating system.  */
  194.  
  195. int page_size;
  196.  
  197. /* Name this program was invoked by.  */
  198.  
  199. char *progname;
  200.  
  201. /* System dependencies */
  202.  
  203. /* Define this if names etext, edata and end should not start with `_'.  */
  204. /* #define nounderscore 1 */
  205.  
  206. /* Define NON_NATIVE if using BSD or pseudo-BSD file format on a system
  207.    whose native format is different.  */
  208. /* #define NON_NATIVE */
  209.  
  210. /* Define this to specify the default executable format.  */
  211.  
  212. #if TARGET_MACHINE==TARGET_HPUX
  213. #define DEFAULT_MAGIC NMAGIC  /* hpux bugs screw ZMAGIC */
  214. #endif
  215.  
  216. #ifndef DEFAULT_MAGIC
  217. #define DEFAULT_MAGIC ZMAGIC
  218. #endif
  219.  
  220. /* Ordinary 4.3bsd lacks these macros in a.out.h.  */
  221.  
  222. #ifndef N_TXTADDR
  223. #if TARGET_MACHINE==TARGET_VAX || TARGET_MACHINE==TARGET_SONY_NEWS
  224. #define N_TXTADDR(X) 0
  225. #endif
  226. #if TARGET_MACHINE==TARGET_SUN3 || TARGET_MACHINE==TARGET_SUN2
  227. #define N_TXTADDR(x)  (sizeof (struct exec))
  228. #endif
  229. #if TARGET_MAHCINE==TARGET_SEQUENT
  230. #define    N_TXTADDR(x) (N_ADDRADJ(x))
  231. #endif
  232. #endif
  233.  
  234. #ifndef N_DATADDR
  235. #if TARGET_MACHINE==TARGET_VAX || TARGET_MACHINE==TARGET_SONY_NEWS
  236. #define N_DATADDR(x) \
  237.     (((x).a_magic==OMAGIC)? (N_TXTADDR(x)+(x).a_text) \
  238.     : (page_size+((N_TXTADDR(x)+(x).a_text-1) & ~(page_size-1))))
  239. #endif
  240. #if TARGET_MACHINE==TARGET_SUN3 || TARGET_MACHINE==TARGET_SUN2
  241. #define SEGMENT_SIZE 0x20000
  242. #define N_DATADDR(x) \
  243.     (((x).a_magic==OMAGIC)? (N_TXTADDR(x)+(x).a_text) \
  244.      : (SEGMENT_SIZE + ((N_TXTADDR(x)+(x).a_text-1) & ~(SEGMENT_SIZE-1))))
  245. #endif
  246. #if TARGET_MACHINE==TARGET_SEQUENT
  247. #define N_DATADDR(x) \
  248.     (((x).a_magic==OMAGIC)? (N_TXTADDR(x)+(x).a_text) \
  249.     : (page_size+(((x).a_text-1) & ~(page_size-1))))
  250. #endif
  251. #endif
  252.  
  253. /* Define how to initialize system-dependent header fields.  */
  254. #if TARGET_MACHINE==TARGET_SUN4
  255. #define INITIALIZE_HEADER \
  256.   {outheader.a_machtype = M_SPARC; outheader.a_toolversion = 1;}
  257. #endif
  258. #if TARGET_MACHINE==TARGET_SUN2
  259. #define INITIALIZE_HEADER outheader.a_machtype = M_68010
  260. #endif
  261. #if TARGET_MACHINE==TARGET_SUN3
  262. #define INITIALIZE_HEADER outheader.a_machtype = M_68020
  263. #endif
  264. #if TARGET_MACHINE==TARGET_ALTOS
  265. #define INITIALIZE_HEADER N_SET_MACHTYPE (outheader, M_68020)
  266. #endif
  267. #if TARGET_MACHINE==TARGET_HPUX
  268. #define INITIALIZE_HEADER N_SET_MACHTYPE (outheader, HP9000S200_ID)
  269. #endif
  270. #if TARGET_MACHINE==TARGET_I386
  271. #define INITIALIZE_HEADER N_SET_MACHTYPE (outheader, M_386)
  272. #endif
  273. #if TARGET_MACHINE==TARGET_68K
  274. #define INITIALIZE_HEADER outheader.a_machtype = 0;  
  275. /* This enables code to take care of an ugly hack in the ISI OS.
  276.    If a symbol beings with _$, then the object file is included only
  277.    if the rest of the symbol name has been referenced. */
  278. #define DOLLAR_KLUDGE
  279. #endif
  280.  
  281. /*
  282.  * Alloca include.
  283.  */
  284. #if defined(sun) && defined(sparc) && !defined(__GNUC__)
  285. #include "alloca.h"
  286. #endif
  287.  
  288. #ifndef L_SET
  289. #define L_SET 0
  290. #endif
  291.  
  292. /*
  293.  * Ok.  Following are the relocation information macros.  If your
  294.  * system cannot use the default set (below), you must define all of these:
  295.  
  296.  *   relocation_info: This must be typedef'd (or #define'd) to the type
  297.  * of structure that is stored in the relocation info section of your
  298.  * a.out files.  Often this is defined in the a.out.h for your system.
  299.  *
  300.  *   RELOC_ADDRESS (rval): Offset into the current section of the
  301.  * <whatever> to be relocated.  *Must be an lvalue*.
  302.  *
  303.  *   RELOC_EXTERN_P (rval):  Is this relocation entry based on an
  304.  * external symbol (1), or was it fully resolved upon entering the
  305.  * loader (0) in which case some combination of the value in memory
  306.  * (if RELOC_MEMORY_ADD_P) and the extra (if RELOC_ADD_EXTRA) contains
  307.  * what the value of the relocation actually was.  *Must be an lvalue*.
  308.  *
  309.  *   RELOC_TYPE (rval): For a non-external relocation, this is the
  310.  * segment to relocate for.
  311.  *
  312.  *   RELOC_SYMBOL (rval): For an external relocation, this is the
  313.  * index of its symbol in the symbol table.  *Must be an lvalue*.
  314.  *
  315.  *   RELOC_MEMORY_ADD_P (rval): This should be 1 if the final
  316.  * relocation value output here should be added to memory; 0, if the
  317.  * section of memory described should simply be set to the relocation
  318.  * value.
  319.  *
  320.  *   RELOC_MEMORY_ADD_P (rval): If this is nonzero, the value previously
  321.  * present in the memory location to be relocated is *added*
  322.  * to the relocation value, to produce the final result.
  323.  * Otherwise, the relocation value is stored in the memory location
  324.  * and the value previously found there is ignored.
  325.  * By default, this is always 1.
  326.  *
  327.  *   RELOC_MEMORY_SUB_P (rval): If this is nonzero, the value previously
  328.  * present in the memory location to be relocated is *subtracted*
  329.  * from the relocation value, to produce the final result.
  330.  * By default, this is always 0.
  331.  *
  332.  *   RELOC_ADD_EXTRA (rval): (Optional) This macro, if defined, gives
  333.  * an extra value to be added to the relocation value based on the
  334.  * individual relocation entry.  *Must be an lvalue if defined*.
  335.  *
  336.  *   RELOC_PCREL_P (rval): True if the relocation value described is
  337.  * pc relative.
  338.  *
  339.  *   RELOC_VALUE_RIGHTSHIFT (rval): Number of bits right to shift the
  340.  * final relocation value before putting it where it belongs.
  341.  *
  342.  *   RELOC_TARGET_SIZE (rval): log to the base 2 of the number of
  343.  * bytes of size this relocation entry describes; 1 byte == 0; 2 bytes
  344.  * == 1; 4 bytes == 2, and etc.  This is somewhat redundant (we could
  345.  * do everything in terms of the bit operators below), but having this
  346.  * macro could end up producing better code on machines without fancy
  347.  * bit twiddling.  Also, it's easier to understand/code big/little
  348.  * endian distinctions with this macro.
  349.  *
  350.  *   RELOC_TARGET_BITPOS (rval): The starting bit position within the
  351.  * object described in RELOC_TARGET_SIZE in which the relocation value
  352.  * will go.
  353.  *
  354.  *   RELOC_TARGET_BITSIZE (rval): How many bits are to be replaced
  355.  * with the bits of the relocation value.  It may be assumed by the
  356.  * code that the relocation value will fit into this many bits.  This
  357.  * may be larger than RELOC_TARGET_SIZE if such be useful.
  358.  *
  359.  *
  360.  *        Things I haven't implemented
  361.  *        ----------------------------
  362.  *
  363.  *    Values for RELOC_TARGET_SIZE other than 0, 1, or 2.
  364.  *
  365.  *    Pc relative relocation for External references.
  366.  *
  367.  *
  368.  */
  369.  
  370. #if TARGET_MACHINE==TARGET_SUN4
  371. /* Sparc (Sun 4) macros */
  372. #undef relocation_info
  373. #define relocation_info                    reloc_info_sparc
  374. #define RELOC_ADDRESS(r)        ((r)->r_address)                 
  375. #define RELOC_EXTERN_P(r)               ((r)->r_extern)      
  376. #define RELOC_TYPE(r)                   ((r)->r_index)  
  377. #define RELOC_SYMBOL(r)                 ((r)->r_index)   
  378. #define RELOC_MEMORY_SUB_P(r)        0
  379. #define RELOC_MEMORY_ADD_P(r)           0
  380. #define RELOC_ADD_EXTRA(r)              ((r)->r_addend)       
  381. #define RELOC_PCREL_P(r)                \
  382.     ((int) (r)->r_type >= (int) RELOC_DISP8 && \
  383.      (int) (r)->r_type <= (int) RELOC_WDISP22)
  384. #define RELOC_VALUE_RIGHTSHIFT(r) \
  385.     (reloc_target_rightshift[(int) (r)->r_type])
  386. #define RELOC_TARGET_SIZE(r)            (reloc_target_size[(int) (r)->r_type])
  387. #define RELOC_TARGET_BITPOS(r)          0
  388. #define RELOC_TARGET_BITSIZE(r) \
  389.     (reloc_target_bitsize[(int) (r)->r_type])
  390.  
  391. /* Note that these are very dependent on the order of the enums in
  392.    enum reloc_type (in a.out.h); if they change the following must be
  393.    changed */
  394. /* Also note that the last few may be incorrect; I have no information */
  395. static int reloc_target_rightshift[] = {
  396.   0, 0, 0, 0, 0, 0, 2, 2, 10, 0, 0, 0, 0, 0, 0,
  397. };
  398. static int reloc_target_size[] = {
  399.   0, 1, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  400. };
  401. static int reloc_target_bitsize[] = {
  402.   8, 16, 32, 8, 16, 32, 30, 22, 22, 22, 13, 10, 32, 32, 16,
  403. };
  404.  
  405. #define    MAX_ALIGNMENT    (sizeof (double))
  406.   /* The pagesize on an old sun4 is 0x2000, on sparcStation it is 0x1000.
  407.      If you want to use the same binaries on both, then you need to use
  408.      the larger pagesize. */
  409. #define TARGET_PAGE_SIZE    0x2000
  410. #endif
  411.  
  412. #if TARGET_MACHINE==TARGET_SEQUENT
  413. #define RELOC_ADDRESS(r)        ((r)->r_address)
  414. #define RELOC_EXTERN_P(r)        ((r)->r_extern)
  415. #define RELOC_TYPE(r)        ((r)->r_symbolnum)
  416. #define RELOC_SYMBOL(r)        ((r)->r_symbolnum)
  417. #define RELOC_MEMORY_SUB_P(r)    ((r)->r_bsr)
  418. #define RELOC_MEMORY_ADD_P(r)    1
  419. #undef RELOC_ADD_EXTRA
  420. #define RELOC_PCREL_P(r)        ((r)->r_pcrel || (r)->r_bsr)
  421. #define RELOC_VALUE_RIGHTSHIFT(r)    0
  422. #define RELOC_TARGET_SIZE(r)        ((r)->r_length)
  423. #define RELOC_TARGET_BITPOS(r)    0
  424. #define RELOC_TARGET_BITSIZE(r)    32
  425. #endif
  426.  
  427. /* Default macros */
  428. #ifndef RELOC_ADDRESS
  429. #define RELOC_ADDRESS(r)        ((r)->r_address)
  430. #define RELOC_EXTERN_P(r)        ((r)->r_extern)
  431. #define RELOC_TYPE(r)        ((r)->r_symbolnum)
  432. #define RELOC_SYMBOL(r)        ((r)->r_symbolnum)
  433. #define RELOC_MEMORY_SUB_P(r)    0
  434. #define RELOC_MEMORY_ADD_P(r)    1
  435. #undef RELOC_ADD_EXTRA
  436. #define RELOC_PCREL_P(r)        ((r)->r_pcrel)
  437. #define RELOC_VALUE_RIGHTSHIFT(r)    0
  438. #define RELOC_TARGET_SIZE(r)        ((r)->r_length)
  439. #define RELOC_TARGET_BITPOS(r)    0
  440. #define RELOC_TARGET_BITSIZE(r)    32
  441. #endif
  442.  
  443. #ifndef MAX_ALIGNMENT
  444. #define    MAX_ALIGNMENT    (sizeof (int))
  445. #endif
  446.  
  447. #ifdef nounderscore
  448. #define LPREFIX '.'
  449. #else
  450. #define LPREFIX 'L'
  451. #endif
  452.  
  453.  
  454. /* Special global symbol types understood by GNU LD.  */
  455.  
  456. /* The following type indicates the definition of a symbol as being
  457.    an indirect reference to another symbol.  The other symbol
  458.    appears as an undefined reference, immediately following this symbol.
  459.  
  460.    Indirection is asymmetrical.  The other symbol's value will be used
  461.    to satisfy requests for the indirect symbol, but not vice versa.
  462.    If the other symbol does not have a definition, libraries will
  463.    be searched to find a definition.
  464.  
  465.    So, for example, the following two lines placed in an assembler
  466.    input file would result in an object file which would direct gnu ld
  467.    to resolve all references to symbol "foo" as references to symbol
  468.    "bar". 
  469.  
  470.     .stabs "_foo",11,0,0,0
  471.     .stabs "_bar",1,0,0,0
  472.  
  473.    Note that (11 == (N_INDR | N_EXT)) and (1 == (N_UNDF | N_EXT)).  */
  474.  
  475. #ifndef N_INDR
  476. #define N_INDR 0xa
  477. #endif
  478.  
  479. /* The following symbols refer to set elements.  These are expected
  480.    only in input to the loader; they should not appear in loader
  481.    output (unless relocatable output is requested).  To be recognized
  482.    by the loader, the input symbols must have their N_EXT bit set.
  483.    All the N_SET[ATDB] symbols with the same name form one set.  The
  484.    loader collects all of these elements at load time and outputs a
  485.    vector for each name.
  486.    Space (an array of 32 bit words) is allocated for the set in the
  487.    data section, and the n_value field of each set element value is
  488.    stored into one word of the array.
  489.    The first word of the array is the length of the set (number of
  490.    elements).  The last word of the vector is set to zero for possible
  491.    use by incremental loaders.  The array is ordered by the linkage
  492.    order; the first symbols which the linker encounters will be first
  493.    in the array.
  494.  
  495.    In C syntax this looks like:
  496.  
  497.     struct set_vector {
  498.       unsigned int length;
  499.       unsigned int vector[length];
  500.       unsigned int always_zero;
  501.     };
  502.  
  503.    Before being placed into the array, each element is relocated
  504.    according to its type.  This allows the loader to create an array
  505.    of pointers to objects automatically.  N_SETA type symbols will not
  506.    be relocated.
  507.  
  508.    The address of the set is made into an N_SETV symbol
  509.    whose name is the same as the name of the set.
  510.    This symbol acts like a N_DATA global symbol
  511.    in that it can satisfy undefined external references.
  512.  
  513.    For the purposes of determining whether or not to load in a library
  514.    file, set element definitions are not considered "real
  515.    definitions"; they will not cause the loading of a library
  516.    member.
  517.  
  518.    If relocatable output is requested, none of this processing is
  519.    done.  The symbols are simply relocated and passed through to the
  520.    output file.
  521.  
  522.    So, for example, the following three lines of assembler code
  523.    (whether in one file or scattered between several different ones)
  524.    will produce a three element vector (total length is five words;
  525.    see above), referenced by the symbol "_xyzzy", which will have the
  526.    addresses of the routines _init1, _init2, and _init3.
  527.  
  528.    *NOTE*: If symbolic addresses are used in the n_value field of the
  529.    defining .stabs, those symbols must be defined in the same file as
  530.    that containing the .stabs.
  531.  
  532.     .stabs "_xyzzy",23,0,0,_init1
  533.     .stabs "_xyzzy",23,0,0,_init2
  534.     .stabs "_xyzzy",23,0,0,_init3
  535.  
  536.    Note that (23 == (N_SETT | N_EXT)).  */
  537.  
  538. #ifndef N_SETA
  539. #define    N_SETA    0x14        /* Absolute set element symbol */
  540. #endif                /* This is input to LD, in a .o file.  */
  541.  
  542. #ifndef N_SETT
  543. #define    N_SETT    0x16        /* Text set element symbol */
  544. #endif                /* This is input to LD, in a .o file.  */
  545.  
  546. #ifndef N_SETD
  547. #define    N_SETD    0x18        /* Data set element symbol */
  548. #endif                /* This is input to LD, in a .o file.  */
  549.  
  550. #ifndef N_SETB
  551. #define    N_SETB    0x1A        /* Bss set element symbol */
  552. #endif                /* This is input to LD, in a .o file.  */
  553.  
  554. /* Macros dealing with the set element symbols defined in a.out.h */
  555. #define    SET_ELEMENT_P(x)    ((x)>=N_SETA&&(x)<=(N_SETB|N_EXT))
  556. #define TYPE_OF_SET_ELEMENT(x)    ((x)-N_SETA+N_ABS)
  557.  
  558. #ifndef N_SETV
  559. #define N_SETV    0x1C        /* Pointer to set vector in data area.  */
  560. #endif                /* This is output from LD.  */
  561.  
  562. /* If a this type of symbol is encountered, its name is a warning
  563.    message to print each time the symbol referenced by the next symbol
  564.    table entry is referenced.   
  565.  
  566.    This feature may be used to allow backwards compatibility with
  567.    certain functions (eg. gets) but to discourage programmers from
  568.    their use.
  569.  
  570.    So if, for example, you wanted to have ld print a warning whenever
  571.    the function "gets" was used in their C program, you would add the
  572.    following to the assembler file in which gets is defined:
  573.  
  574.     .stabs "Obsolete function \"gets\" referenced",30,0,0,0
  575.     .stabs "_gets",1,0,0,0
  576.  
  577.    These .stabs do not necessarily have to be in the same file as the
  578.    gets function, they simply must exist somewhere in the compilation.  */
  579.  
  580. #ifndef N_WARNING
  581. #define N_WARNING 0x1E        /* Warning message to print if symbol
  582.                    included */
  583. #endif                /* This is input to ld */
  584.  
  585. #ifndef __GNU_STAB__
  586.  
  587. /* Line number for the data section.  This is to be used to describe
  588.    the source location of a variable declaration.  */
  589. #ifndef N_DSLINE
  590. #define N_DSLINE (N_SLINE+N_DATA-N_TEXT)
  591. #endif
  592.  
  593. /* Line number for the bss section.  This is to be used to describe
  594.    the source location of a variable declaration.  */
  595. #ifndef N_BSLINE
  596. #define N_BSLINE (N_SLINE+N_BSS-N_TEXT)
  597. #endif
  598.  
  599. #endif /* not __GNU_STAB__ */
  600.  
  601. /* Symbol table */
  602.  
  603. /* Global symbol data is recorded in these structures,
  604.    one for each global symbol.
  605.    They are found via hashing in 'symtab', which points to a vector of buckets.
  606.    Each bucket is a chain of these structures through the link field.  */
  607.  
  608. typedef
  609.   struct glosym
  610.     {
  611.       /* Pointer to next symbol in this symbol's hash bucket.  */
  612.       struct glosym *link;
  613.       /* Name of this symbol.  */
  614.       char *name;
  615.       /* Value of this symbol as a global symbol.  */
  616.       long value;
  617.       /* Chain of external 'nlist's in files for this symbol, both defs
  618.      and refs.  */
  619.       struct nlist *refs;
  620.       /* Any warning message that might be associated with this symbol
  621.          from an N_WARNING symbol encountered. */
  622.       char *warning;
  623.       /* Nonzero means definitions of this symbol as common have been seen,
  624.      and the value here is the largest size specified by any of them.  */
  625.       int max_common_size;
  626.       /* For relocatable_output, records the index of this global sym in the
  627.      symbol table to be written, with the first global sym given index 0.*/
  628.       int def_count;
  629.       /* Nonzero means a definition of this global symbol is known to exist.
  630.      Library members should not be loaded on its account.  */
  631.       char defined;
  632.       /* Nonzero means a reference to this global symbol has been seen
  633.      in a file that is surely being loaded.
  634.      A value higher than 1 is the n_type code for the symbol's
  635.      definition.  */
  636.       char referenced;
  637.       /* A count of the number of undefined references printed for a
  638.      specific symbol.  If a symbol is unresolved at the end of
  639.      digest_symbols (and the loading run is supposed to produce
  640.      relocatable output) do_file_warnings keeps track of how many
  641.      unresolved reference error messages have been printed for
  642.      each symbol here.  When the number hits MAX_UREFS_PRINTED,
  643.      messages stop. */
  644.       unsigned char undef_refs;
  645.       /* 1 means that this symbol has multiple definitions.  2 means
  646.          that it has multiple definitions, and some of them are set
  647.      elements, one of which has been printed out already.  */
  648.       unsigned char multiply_defined;
  649.       /* Nonzero means print a message at all refs or defs of this symbol */
  650.       char trace;
  651.     }
  652.   symbol;
  653.  
  654. /* Number of buckets in symbol hash table */
  655. #define    TABSIZE    1009
  656.  
  657. /* The symbol hash table: a vector of TABSIZE pointers to struct glosym. */
  658. symbol *symtab[TABSIZE];
  659.  
  660. /* Number of symbols in symbol hash table. */
  661. int num_hash_tab_syms = 0;
  662.  
  663. /* Count the number of nlist entries that are for local symbols.
  664.    This count and the three following counts
  665.    are incremented as as symbols are entered in the symbol table.  */
  666. int local_sym_count;
  667.  
  668. /* Count number of nlist entries that are for local symbols
  669.    whose names don't start with L. */
  670. int non_L_local_sym_count;
  671.  
  672. /* Count the number of nlist entries for debugger info.  */
  673. int debugger_sym_count;
  674.  
  675. /* Count the number of global symbols referenced and not defined.  */
  676. int undefined_global_sym_count;
  677.  
  678. /* Count the number of global symbols multiply defined.  */
  679. int multiple_def_count;
  680.  
  681. /* Count the number of defined global symbols.
  682.    Each symbol is counted only once
  683.    regardless of how many different nlist entries refer to it,
  684.    since the output file will need only one nlist entry for it.
  685.    This count is computed by `digest_symbols';
  686.    it is undefined while symbols are being loaded. */
  687. int defined_global_sym_count;
  688.  
  689. /* Count the number of symbols defined through common declarations.
  690.    This count is kept in symdef_library, linear_library, and
  691.    enter_global_ref.  It is incremented when the defined flag is set
  692.    in a symbol because of a common definition, and decremented when
  693.    the symbol is defined "for real" (ie. by something besides a common
  694.    definition).  */
  695. int common_defined_global_count;
  696.  
  697. /* Count the number of set element type symbols and the number of
  698.    separate vectors which these symbols will fit into.  See the
  699.    GNU a.out.h for more info.
  700.    This count is computed by 'enter_file_symbols' */
  701. int set_symbol_count;
  702. int set_vector_count;
  703.  
  704. /* Define a linked list of strings which define symbols which should
  705.    be treated as set elements even though they aren't.  Any symbol
  706.    with a prefix matching one of these should be treated as a set
  707.    element.
  708.  
  709.    This is to make up for deficiencies in many assemblers which aren't
  710.    willing to pass any stabs through to the loader which they don't
  711.    understand.  */
  712. struct string_list_element {
  713.   char *str;
  714.   struct string_list_element *next;
  715. };
  716.  
  717. struct string_list_element *set_element_prefixes;
  718.  
  719. /* Count the number of definitions done indirectly (ie. done relative
  720.    to the value of some other symbol. */
  721. int global_indirect_count;
  722.  
  723. /* Count the number of warning symbols encountered. */
  724. int warning_count;
  725.  
  726. /* Total number of symbols to be written in the output file.
  727.    Computed by digest_symbols from the variables above.  */
  728. int nsyms;
  729.  
  730.  
  731. /* Nonzero means ptr to symbol entry for symbol to use as start addr.
  732.    -e sets this.  */
  733. symbol *entry_symbol;
  734.  
  735. symbol *edata_symbol;   /* the symbol _edata */
  736. symbol *etext_symbol;   /* the symbol _etext */
  737. symbol *end_symbol;    /* the symbol _end */
  738.  
  739. /* Each input file, and each library member ("subfile") being loaded,
  740.    has a `file_entry' structure for it.
  741.  
  742.    For files specified by command args, these are contained in the vector
  743.    which `file_table' points to.
  744.  
  745.    For library members, they are dynamically allocated,
  746.    and chained through the `chain' field.
  747.    The chain is found in the `subfiles' field of the `file_entry'.
  748.    The `file_entry' objects for the members have `superfile' fields pointing
  749.    to the one for the library.  */
  750.  
  751. struct file_entry {
  752.   /* Name of this file.  */
  753.   char *filename;
  754.   /* Name to use for the symbol giving address of text start */
  755.   /* Usually the same as filename, but for a file spec'd with -l
  756.      this is the -l switch itself rather than the filename.  */
  757.   char *local_sym_name;
  758.  
  759.   /* Describe the layout of the contents of the file */
  760.  
  761.   /* The file's a.out header.  */
  762.   struct exec header;
  763.   /* Offset in file of GDB symbol segment, or 0 if there is none.  */
  764.   int symseg_offset;
  765.  
  766.   /* Describe data from the file loaded into core */
  767.  
  768.   /* Symbol table of the file.  */
  769.   struct nlist *symbols;
  770.   /* Size in bytes of string table.  */
  771.   int string_size;
  772.   /* Pointer to the string table.
  773.      The string table is not kept in core all the time,
  774.      but when it is in core, its address is here.  */
  775.   char *strings;
  776.  
  777.   /* Next two used only if `relocatable_output' or if needed for */
  778.   /* output of undefined reference line numbers. */
  779.  
  780.   /* Text reloc info saved by `write_text' for `coptxtrel'.  */
  781.   struct relocation_info *textrel;
  782.   /* Data reloc info saved by `write_data' for `copdatrel'.  */
  783.   struct relocation_info *datarel;
  784.  
  785.   /* Relation of this file's segments to the output file */
  786.  
  787.   /* Start of this file's text seg in the output file core image.  */
  788.   int text_start_address;
  789.   /* Start of this file's data seg in the output file core image.  */
  790.   int data_start_address;
  791.   /* Start of this file's bss seg in the output file core image.  */
  792.   int bss_start_address;
  793.   /* Offset in bytes in the output file symbol table
  794.      of the first local symbol for this file.  Set by `write_file_symbols'.  */
  795.   int local_syms_offset;
  796.  
  797.   /* For library members only */
  798.  
  799.   /* For a library, points to chain of entries for the library members.  */
  800.   struct file_entry *subfiles;
  801.   /* For a library member, offset of the member within the archive.
  802.      Zero for files that are not library members.  */
  803.   int starting_offset;
  804.   /* Size of contents of this file, if library member.  */
  805.   int total_size;
  806.   /* For library member, points to the library's own entry.  */
  807.   struct file_entry *superfile;
  808.   /* For library member, points to next entry for next member.  */
  809.   struct file_entry *chain;
  810.  
  811.   /* 1 if file is a library. */
  812.   char library_flag;
  813.  
  814.   /* 1 if file's header has been read into this structure.  */
  815.   char header_read_flag;
  816.  
  817.   /* 1 means search a set of directories for this file.  */
  818.   char search_dirs_flag;
  819.  
  820.   /* 1 means this is base file of incremental load.
  821.      Do not load this file's text or data.
  822.      Also default text_start to after this file's bss. */
  823.   char just_syms_flag;
  824. };
  825.  
  826. /* Vector of entries for input files specified by arguments.
  827.    These are all the input files except for members of specified libraries.  */
  828. struct file_entry *file_table;
  829.  
  830. /* Length of that vector.  */
  831. int number_of_files;
  832.  
  833. /* When loading the text and data, we can avoid doing a close
  834.    and another open between members of the same library.
  835.  
  836.    These two variables remember the file that is currently open.
  837.    Both are zero if no file is open.
  838.  
  839.    See `each_file' and `file_close'.  */
  840.  
  841. struct file_entry *input_file;
  842. int input_desc;
  843.  
  844. /* The name of the file to write; "a.out" by default.  */
  845.  
  846. char *output_filename;
  847.  
  848. /* Descriptor for writing that file with `mywrite'.  */
  849.  
  850. int outdesc;
  851.  
  852. /* Header for that file (filled in by `write_header').  */
  853.  
  854. struct exec outheader;
  855.  
  856. #ifdef COFF_ENCAPSULATE
  857. struct coffheader coffheader;
  858. int need_coff_header;
  859. #endif
  860.  
  861. /* The following are computed by `digest_symbols'.  */
  862.  
  863. int text_size;        /* total size of text of all input files.  */
  864. int data_size;        /* total size of data of all input files.  */
  865. int bss_size;        /* total size of bss of all input files.  */
  866. int text_reloc_size;    /* total size of text relocation of all input files.  */
  867. int data_reloc_size;    /* total size of data relocation of all input */
  868.             /* files.  */
  869.  
  870. /* Specifications of start and length of the area reserved at the end
  871.    of the text segment for the set vectors.  Computed in 'digest_symbols' */
  872. int set_sect_start;
  873. int set_sect_size;
  874.  
  875. /* Pointer for in core storage for the above vectors, before they are
  876.    written. */
  877. unsigned long *set_vectors;
  878.  
  879. /* Amount of cleared space to leave between the text and data segments.  */
  880.  
  881. int text_pad;
  882.  
  883. /* Amount of bss segment to include as part of the data segment.  */
  884.  
  885. int data_pad;
  886.  
  887. /* Format of __.SYMDEF:
  888.    First, a longword containing the size of the 'symdef' data that follows.
  889.    Second, zero or more 'symdef' structures.
  890.    Third, a longword containing the length of symbol name strings.
  891.    Fourth, zero or more symbol name strings (each followed by a null).  */
  892.  
  893. struct symdef {
  894.   int symbol_name_string_index;
  895.   int library_member_offset;
  896. };
  897.  
  898. /* Record most of the command options.  */
  899.  
  900. /* Address we assume the text section will be loaded at.
  901.    We relocate symbols and text and data for this, but we do not
  902.    write any padding in the output file for it.  */
  903. int text_start;
  904.  
  905. /* Offset of default entry-pc within the text section.  */
  906. int entry_offset;
  907.  
  908. /* Address we decide the data section will be loaded at.  */
  909. int data_start;
  910.  
  911. /* `text-start' address is normally this much plus a page boundary.
  912.    This is not a user option; it is fixed for each system.  */
  913. int text_start_alignment;
  914.  
  915. /* Nonzero if -T was specified in the command line.
  916.    This prevents text_start from being set later to default values.  */
  917. int T_flag_specified;
  918.  
  919. /* Nonzero if -Tdata was specified in the command line.
  920.    This prevents data_start from being set later to default values.  */
  921. int Tdata_flag_specified;
  922.  
  923. /* Size to pad data section up to.
  924.    We simply increase the size of the data section, padding with zeros,
  925.    and reduce the size of the bss section to match.  */
  926. int specified_data_size;
  927.  
  928. /* Magic number to use for the output file, set by switch.  */
  929. int magic;
  930.  
  931. /* Nonzero means print names of input files as processed.  */
  932. int trace_files;
  933.  
  934. /* Which symbols should be stripped (omitted from the output):
  935.    none, all, or debugger symbols.  */
  936. enum { STRIP_NONE, STRIP_ALL, STRIP_DEBUGGER } strip_symbols;
  937.  
  938. /* Which local symbols should be omitted:
  939.    none, all, or those starting with L.
  940.    This is irrelevant if STRIP_NONE.  */
  941. enum { DISCARD_NONE, DISCARD_ALL, DISCARD_L } discard_locals;
  942.  
  943. /* 1 => write load map.  */
  944. int write_map;
  945.  
  946. /* 1 => write relocation into output file so can re-input it later.  */
  947. int relocatable_output;
  948.  
  949. /* 1 => assign space to common symbols even if `relocatable_output'.  */
  950. int force_common_definition;
  951.  
  952. /* Standard directories to search for files specified by -l.  */
  953. char *standard_search_dirs[] =
  954. #ifdef STANDARD_SEARCH_DIRS
  955.   {STANDARD_SEARCH_DIRS};
  956. #else
  957. #ifdef NON_NATIVE
  958.   {"/usr/local/lib/gnu"};
  959. #else
  960.   {"/lib", "/usr/lib", "/usr/local/lib"};
  961. #endif
  962. #endif
  963.  
  964. /* Actual vector of directories to search;
  965.    this contains those specified with -L plus the standard ones.  */
  966. char **search_dirs;
  967.  
  968. /* Length of the vector `search_dirs'.  */
  969. int n_search_dirs;
  970.  
  971. /* Non zero means to create the output executable. */
  972. /* Cleared by nonfatal errors.  */
  973. int make_executable;
  974.  
  975. /* Force the executable to be output, even if there are non-fatal
  976.    errors */
  977. int force_executable;
  978.  
  979. /* Keep a list of any symbols referenced from the command line (so
  980.    that error messages for these guys can be generated). This list is
  981.    zero terminated. */
  982. struct glosym **cmdline_references;
  983. int cl_refs_allocated;
  984.  
  985. void bcopy (), bzero ();
  986. int malloc (), realloc ();
  987. #ifndef alloca
  988. int alloca ();
  989. #endif
  990. int free ();
  991.  
  992. int xmalloc ();
  993. int xrealloc ();
  994. void fatal ();
  995. void fatal_with_file ();
  996. void perror_name ();
  997. void perror_file ();
  998. void error ();
  999.  
  1000. void digest_symbols ();
  1001. void print_symbols ();
  1002. void load_symbols ();
  1003. void decode_command ();
  1004. void list_undefined_symbols ();
  1005. void list_unresolved_references ();
  1006. void write_output ();
  1007. void write_header ();
  1008. void write_text ();
  1009. void read_file_relocation ();
  1010. void write_data ();
  1011. void write_rel ();
  1012. void write_syms ();
  1013. void write_symsegs ();
  1014. void mywrite ();
  1015. void symtab_init ();
  1016. void padfile ();
  1017. char *concat ();
  1018. char *get_file_name ();
  1019. symbol *getsym (), *getsym_soft ();
  1020.  
  1021. int
  1022. main (argc, argv)
  1023.      char **argv;
  1024.      int argc;
  1025. {
  1026.  
  1027. #ifdef TARGET_PAGE_SIZE
  1028.   page_size = TARGET_PAGE_SIZE;
  1029. #else
  1030.   page_size = getpagesize ();
  1031. #endif
  1032.  
  1033.   progname = argv[0];
  1034.  
  1035.   /* Clear the cumulative info on the output file.  */
  1036.   text_size = 0;
  1037.   data_size = 0;
  1038.   bss_size = 0;
  1039.   text_reloc_size = 0;
  1040.   data_reloc_size = 0;
  1041.  
  1042.   data_pad = 0;
  1043.   text_pad = 0;
  1044.  
  1045.   /* Initialize the data about options.  */
  1046.  
  1047.   specified_data_size = 0;
  1048.   strip_symbols = STRIP_NONE;
  1049.   trace_files = 0;
  1050.   discard_locals = DISCARD_NONE;
  1051.   entry_symbol = 0;
  1052.   write_map = 0;
  1053.   relocatable_output = 0;
  1054.   force_common_definition = 0;
  1055.   T_flag_specified = 0;
  1056.   Tdata_flag_specified = 0;
  1057.   magic = DEFAULT_MAGIC;
  1058.   make_executable = 1;
  1059.   force_executable = 0;
  1060.   set_element_prefixes = 0;
  1061.  
  1062.   /* Initialize the cumulative counts of symbols.  */
  1063.  
  1064.   local_sym_count = 0;
  1065.   non_L_local_sym_count = 0;
  1066.   debugger_sym_count = 0;
  1067.   undefined_global_sym_count = 0;
  1068.   set_symbol_count = 0;
  1069.   set_vector_count = 0;
  1070.   global_indirect_count = 0;
  1071.   warning_count = 0;
  1072.   multiple_def_count = 0;
  1073.   common_defined_global_count = 0;
  1074.  
  1075.   /* Keep a list of symbols referenced from the command line */
  1076.   cl_refs_allocated = 10;
  1077.   cmdline_references
  1078.     = (struct glosym **) xmalloc (cl_refs_allocated
  1079.                   * sizeof(struct glosym *));
  1080.   *cmdline_references = 0;
  1081.  
  1082.   /* Completely decode ARGV.  */
  1083.  
  1084.   decode_command (argc, argv);
  1085.  
  1086.   /* Create the symbols `etext', `edata' and `end'.  */
  1087.  
  1088.   if (!relocatable_output)
  1089.     symtab_init ();
  1090.  
  1091.   /* Determine whether to count the header as part of
  1092.      the text size, and initialize the text size accordingly.
  1093.      This depends on the kind of system and on the output format selected.  */
  1094.  
  1095.   N_SET_MAGIC (outheader, magic);
  1096. #ifdef INITIALIZE_HEADER
  1097.   INITIALIZE_HEADER;
  1098. #endif
  1099.  
  1100.   text_size = sizeof (struct exec);
  1101. #ifdef COFF_ENCAPSULATE
  1102.   if (relocatable_output == 0)
  1103.     {
  1104.       need_coff_header = 1;
  1105.       /* set this flag now, since it will change the values of N_TXTOFF, etc */
  1106.       N_SET_FLAGS (outheader, N_FLAGS_COFF_ENCAPSULATE);
  1107.       text_size += sizeof (struct coffheader);
  1108.     }
  1109. #endif
  1110.  
  1111.   text_size -= N_TXTOFF (outheader);
  1112.  
  1113.   if (text_size < 0)
  1114.     text_size = 0;
  1115.   entry_offset = text_size;
  1116.  
  1117.   if (!T_flag_specified && !relocatable_output)
  1118.     text_start = N_TXTADDR (outheader);
  1119.  
  1120.   /* The text-start address is normally this far past a page boundary.  */
  1121.   text_start_alignment = text_start % page_size;
  1122.  
  1123.   /* Load symbols of all input files.
  1124.      Also search all libraries and decide which library members to load.  */
  1125.  
  1126.   load_symbols ();
  1127.  
  1128.   /* Compute where each file's sections go, and relocate symbols.  */
  1129.  
  1130.   digest_symbols ();
  1131.  
  1132.   /* Print error messages for any missing symbols, for any warning
  1133.      symbols, and possibly multiple definitions */
  1134.  
  1135.   do_warnings (stderr);
  1136.  
  1137.   /* Print a map, if requested.  */
  1138.  
  1139.   if (write_map) print_symbols (stdout);
  1140.  
  1141.   /* Write the output file.  */
  1142.  
  1143.   if (make_executable || force_executable)
  1144.     write_output ();
  1145.  
  1146.   exit (!make_executable);
  1147. }
  1148.  
  1149. void decode_option ();
  1150.  
  1151. /* Analyze a command line argument.
  1152.    Return 0 if the argument is a filename.
  1153.    Return 1 if the argument is a option complete in itself.
  1154.    Return 2 if the argument is a option which uses an argument.
  1155.  
  1156.    Thus, the value is the number of consecutive arguments
  1157.    that are part of options.  */
  1158.  
  1159. int
  1160. classify_arg (arg)
  1161.      register char *arg;
  1162. {
  1163.   if (*arg != '-') return 0;
  1164.   switch (arg[1])
  1165.     {
  1166.     case 'A':
  1167.     case 'D':
  1168.     case 'e':
  1169.     case 'L':
  1170.     case 'l':
  1171.     case 'o':
  1172.     case 'u':
  1173.     case 'V':
  1174.     case 'y':
  1175.       if (arg[2])
  1176.     return 1;
  1177.       return 2;
  1178.  
  1179.     case 'B':
  1180.       if (! strcmp (&arg[2], "static"))
  1181.     return 1;
  1182.  
  1183.     case 'T':
  1184.       if (arg[2] == 0)
  1185.     return 2;
  1186.       if (! strcmp (&arg[2], "text"))
  1187.     return 2;
  1188.       if (! strcmp (&arg[2], "data"))
  1189.     return 2;
  1190.       return 1;
  1191.     }
  1192.  
  1193.   return 1;
  1194. }
  1195.  
  1196. /* Process the command arguments,
  1197.    setting up file_table with an entry for each input file,
  1198.    and setting variables according to the options.  */
  1199.  
  1200. void
  1201. decode_command (argc, argv)
  1202.      char **argv;
  1203.      int argc;
  1204. {
  1205.   register int i;
  1206.   register struct file_entry *p;
  1207.  
  1208.   number_of_files = 0;
  1209.   output_filename = "a.out";
  1210.  
  1211.   n_search_dirs = 0;
  1212.   search_dirs = (char **) xmalloc (sizeof (char *));
  1213.  
  1214.   /* First compute number_of_files so we know how long to make file_table.  */
  1215.   /* Also process most options completely.  */
  1216.  
  1217.   for (i = 1; i < argc; i++)
  1218.     {
  1219.       register int code = classify_arg (argv[i]);
  1220.       if (code)
  1221.     {
  1222.       if (i + code > argc)
  1223.         fatal ("no argument following %s\n", argv[i]);
  1224.  
  1225.       decode_option (argv[i], argv[i+1]);
  1226.  
  1227.       if (argv[i][1] == 'l' || argv[i][1] == 'A')
  1228.         number_of_files++;
  1229.  
  1230.       i += code - 1;
  1231.     }
  1232.       else
  1233.     number_of_files++;
  1234.     }
  1235.  
  1236.   if (!number_of_files)
  1237.     fatal ("no input files", 0);
  1238.  
  1239.   p = file_table
  1240.     = (struct file_entry *) xmalloc (number_of_files * sizeof (struct file_entry));
  1241.   bzero (p, number_of_files * sizeof (struct file_entry));
  1242.  
  1243.   /* Now scan again and fill in file_table.  */
  1244.   /* All options except -A and -l are ignored here.  */
  1245.  
  1246.   for (i = 1; i < argc; i++)
  1247.     {
  1248.       register int code = classify_arg (argv[i]);
  1249.  
  1250.       if (code)
  1251.     {
  1252.       char *string;
  1253.       if (code == 2)
  1254.         string = argv[i+1];
  1255.       else
  1256.         string = &argv[i][2];
  1257.  
  1258.       if (argv[i][1] == 'A')
  1259.         {
  1260.           if (p != file_table)
  1261.         fatal ("-A specified before an input file other than the first");
  1262.  
  1263.           p->filename = string;
  1264.           p->local_sym_name = string;
  1265.           p->just_syms_flag = 1;
  1266.           p++;
  1267.         }
  1268.       if (argv[i][1] == 'l')
  1269.         {
  1270.           p->filename = concat ("lib", string, ".a");
  1271.           p->local_sym_name = concat ("-l", string, "");
  1272.           p->search_dirs_flag = 1;
  1273.           p++;
  1274.         }
  1275.       i += code - 1;
  1276.     }
  1277.       else
  1278.     {
  1279.       p->filename = argv[i];
  1280.       p->local_sym_name = argv[i];
  1281.       p++;
  1282.     }
  1283.     }
  1284.  
  1285.   /* Now check some option settings for consistency.  */
  1286.  
  1287. #ifndef sprite
  1288. #ifdef NMAGIC
  1289.   if ((magic == ZMAGIC || magic == NMAGIC)
  1290. #else
  1291.   if ((magic == ZMAGIC)
  1292. #endif
  1293.       && (text_start - text_start_alignment) & (page_size - 1))
  1294.     fatal ("-T argument not multiple of page size, with sharable output", 0);
  1295. #endif
  1296.  
  1297.   /* Append the standard search directories to the user-specified ones.  */
  1298.   {
  1299.     int n = sizeof standard_search_dirs / sizeof standard_search_dirs[0];
  1300.     n_search_dirs += n;
  1301.     search_dirs
  1302.       = (char **) xrealloc (search_dirs, n_search_dirs * sizeof (char *));
  1303.     bcopy (standard_search_dirs, &search_dirs[n_search_dirs - n],
  1304.        n * sizeof (char *));
  1305.   }
  1306. }
  1307.  
  1308.  
  1309. void
  1310. add_cmdline_ref (sp)
  1311.      struct glosym *sp;
  1312. {
  1313.   struct glosym **ptr;
  1314.  
  1315.   for (ptr = cmdline_references;
  1316.        ptr < cmdline_references + cl_refs_allocated && *ptr;
  1317.        ptr++)
  1318.     ;
  1319.  
  1320.   if (ptr >= cmdline_references + cl_refs_allocated - 1)
  1321.     {
  1322.       int diff = ptr - cmdline_references;
  1323.       
  1324.       cl_refs_allocated *= 2;
  1325.       cmdline_references = (struct glosym **)
  1326.     xrealloc (cmdline_references,
  1327.          cl_refs_allocated * sizeof (struct glosym *));
  1328.       ptr = cmdline_references + diff;
  1329.     }
  1330.   
  1331.   *ptr++ = sp;
  1332.   *ptr = (struct glosym *) 0;
  1333. }
  1334.     
  1335. int
  1336. set_element_prefixed_p (name)
  1337.      char *name;
  1338. {
  1339.   struct string_list_element *p;
  1340.   int i;
  1341.  
  1342.   for (p = set_element_prefixes; p; p = p->next)
  1343.     {
  1344.       for (i = 0; p->str[i] != '\0' && (p->str[i] == name[i]); i++)
  1345.     ;
  1346.  
  1347.       if (p->str[i] == '\0')
  1348.     return 1;
  1349.     }
  1350.   return 0;
  1351. }
  1352.  
  1353. int parse ();
  1354.  
  1355. /* Record an option and arrange to act on it later.
  1356.    ARG should be the following command argument,
  1357.    which may or may not be used by this option.
  1358.  
  1359.    The `l' and `A' options are ignored here since they actually
  1360.    specify input files.  */
  1361.  
  1362. void
  1363. decode_option (swt, arg)
  1364.      register char *swt, *arg;
  1365. {
  1366.   /* We get Bstatic from gcc on suns.  */
  1367.   if (! strcmp (swt + 1, "Bstatic"))
  1368.     return;
  1369.   if (! strcmp (swt + 1, "Ttext"))
  1370.     {
  1371. #ifdef sprite 
  1372.       magic = OMAGIC;
  1373. #endif
  1374.       text_start = parse (arg, "%x", "invalid argument to -Ttext");
  1375.       T_flag_specified = 1;
  1376.       return;
  1377.     }
  1378.   if (! strcmp (swt + 1, "Tdata"))
  1379.     {
  1380.       data_start = parse (arg, "%x", "invalid argument to -Tdata");
  1381.       Tdata_flag_specified = 1;
  1382.       return;
  1383.     }
  1384.   if (! strcmp (swt + 1, "noinhibit-exec"))
  1385.     {
  1386.       force_executable = 1;
  1387.       return;
  1388.     }
  1389.  
  1390.   if (swt[2] != 0)
  1391.     arg = &swt[2];
  1392.  
  1393.   switch (swt[1])
  1394.     {
  1395.     case 'A':
  1396.       return;
  1397.  
  1398.     case 'D':
  1399.       specified_data_size = parse (arg, "%x", "invalid argument to -D");
  1400.       return;
  1401.  
  1402.     case 'd':
  1403.       force_common_definition = 1;
  1404.       return;
  1405.  
  1406.     case 'e':
  1407.       entry_symbol = getsym (arg);
  1408.       if (!entry_symbol->defined && !entry_symbol->referenced)
  1409.     undefined_global_sym_count++;
  1410.       entry_symbol->referenced = 1;
  1411.       add_cmdline_ref (entry_symbol);
  1412.       return;
  1413.  
  1414.     case 'l':
  1415.       return;
  1416.  
  1417.     case 'L':
  1418.       n_search_dirs++;
  1419.       search_dirs
  1420.     = (char **) xrealloc (search_dirs, n_search_dirs * sizeof (char *));
  1421.       search_dirs[n_search_dirs - 1] = arg;
  1422.       return;
  1423.  
  1424.     case 'M':
  1425.       write_map = 1;
  1426.       return;
  1427.  
  1428.     case 'N':
  1429.       magic = OMAGIC;
  1430.       return;
  1431.  
  1432. #ifdef NMAGIC
  1433.     case 'n':
  1434.       magic = NMAGIC;
  1435.       return;
  1436. #endif
  1437.  
  1438.     case 'o':
  1439.       output_filename = arg;
  1440.       return;
  1441.  
  1442.     case 'r':
  1443.       relocatable_output = 1;
  1444.       magic = OMAGIC;
  1445.       text_start = 0;
  1446.       return;
  1447.  
  1448.     case 'S':
  1449.       strip_symbols = STRIP_DEBUGGER;
  1450.       return;
  1451.  
  1452.     case 's':
  1453.       strip_symbols = STRIP_ALL;
  1454.       return;
  1455.  
  1456.     case 'T':
  1457. #ifdef sprite
  1458.       magic = OMAGIC;
  1459. #endif      
  1460.       text_start = parse (arg, "%x", "invalid argument to -T");
  1461.       T_flag_specified = 1;
  1462.       return;
  1463.  
  1464.     case 't':
  1465.       trace_files = 1;
  1466.       return;
  1467.  
  1468.     case 'u':
  1469.       {
  1470.     register symbol *sp = getsym (arg);
  1471.     if (!sp->defined && !sp->referenced)
  1472.       undefined_global_sym_count++;
  1473.     sp->referenced = 1;
  1474.     add_cmdline_ref (sp);
  1475.       }
  1476.       return;
  1477.  
  1478.     case 'V':
  1479.       {
  1480.     struct string_list_element *new
  1481.       = (struct string_list_element *)
  1482.         xmalloc (sizeof (struct string_list_element));
  1483.  
  1484.     new->str = arg;
  1485.     new->next = set_element_prefixes;
  1486.     set_element_prefixes = new;
  1487.     return;
  1488.       }
  1489.  
  1490.     case 'X':
  1491.       discard_locals = DISCARD_L;
  1492.       return;
  1493.  
  1494.     case 'x':
  1495.       discard_locals = DISCARD_ALL;
  1496.       return;
  1497.  
  1498.     case 'y':
  1499.       {
  1500.     register symbol *sp = getsym (&swt[2]);
  1501.     sp->trace = 1;
  1502.       }
  1503.       return;
  1504.  
  1505.     case 'z':
  1506.       magic = ZMAGIC;
  1507.       return;
  1508.  
  1509.     default:
  1510.       fatal ("invalid command option `%s'", swt);
  1511.     }
  1512. }
  1513.  
  1514. /** Convenient functions for operating on one or all files being */
  1515.  /** loaded.  */
  1516. void print_file_name ();
  1517.  
  1518. /* Call FUNCTION on each input file entry.
  1519.    Do not call for entries for libraries;
  1520.    instead, call once for each library member that is being loaded.
  1521.  
  1522.    FUNCTION receives two arguments: the entry, and ARG.  */
  1523.  
  1524. void
  1525. each_file (function, arg)
  1526.      register void (*function)();
  1527.      register int arg;
  1528. {
  1529.   register int i;
  1530.  
  1531.   for (i = 0; i < number_of_files; i++)
  1532.     {
  1533.       register struct file_entry *entry = &file_table[i];
  1534.       if (entry->library_flag)
  1535.         {
  1536.       register struct file_entry *subentry = entry->subfiles;
  1537.       for (; subentry; subentry = subentry->chain)
  1538.         (*function) (subentry, arg);
  1539.     }
  1540.       else
  1541.     (*function) (entry, arg);
  1542.     }
  1543. }
  1544.  
  1545. /* Call FUNCTION on each input file entry until it returns a non-zero
  1546.    value.  Return this value.
  1547.    Do not call for entries for libraries;
  1548.    instead, call once for each library member that is being loaded.
  1549.  
  1550.    FUNCTION receives two arguments: the entry, and ARG.  It must be a
  1551.    function returning unsigned long (though this can probably be fudged). */
  1552. #if 0
  1553. unsigned long
  1554. check_each_file (function, arg)
  1555.      register unsigned long (*function)();
  1556.      register int arg;
  1557. {
  1558.   register int i;
  1559.   register unsigned long return_val;
  1560.  
  1561.   for (i = 0; i < number_of_files; i++)
  1562.     {
  1563.       register struct file_entry *entry = &file_table[i];
  1564.       if (entry->library_flag)
  1565.         {
  1566.       register struct file_entry *subentry = entry->subfiles;
  1567.       for (; subentry; subentry = subentry->chain)
  1568.         if (return_val = (*function) (subentry, arg))
  1569.           return return_val;
  1570.     }
  1571.       else
  1572.     if (return_val = (*function) (entry, arg))
  1573.       return return_val;
  1574.     }
  1575.   return 0;
  1576. }
  1577. #endif
  1578.  
  1579. /* Like `each_file' but ignore files that were just for symbol definitions.  */
  1580.  
  1581. void
  1582. each_full_file (function, arg)
  1583.      register void (*function)();
  1584.      register int arg;
  1585. {
  1586.   register int i;
  1587.  
  1588.   for (i = 0; i < number_of_files; i++)
  1589.     {
  1590.       register struct file_entry *entry = &file_table[i];
  1591.       if (entry->just_syms_flag)
  1592.     continue;
  1593.       if (entry->library_flag)
  1594.         {
  1595.       register struct file_entry *subentry = entry->subfiles;
  1596.       for (; subentry; subentry = subentry->chain)
  1597.         (*function) (subentry, arg);
  1598.     }
  1599.       else
  1600.     (*function) (entry, arg);
  1601.     }
  1602. }
  1603.  
  1604. /* Close the input file that is now open.  */
  1605.  
  1606. void
  1607. file_close ()
  1608. {
  1609.   close (input_desc);
  1610.   input_desc = 0;
  1611.   input_file = 0;
  1612. }
  1613.  
  1614. /* Open the input file specified by 'entry', and return a descriptor.
  1615.    The open file is remembered; if the same file is opened twice in a row,
  1616.    a new open is not actually done.  */
  1617.  
  1618. int
  1619. file_open (entry)
  1620.      register struct file_entry *entry;
  1621. {
  1622.   register int desc;
  1623.  
  1624.   if (entry->superfile)
  1625.     return file_open (entry->superfile);
  1626.  
  1627.   if (entry == input_file)
  1628.     return input_desc;
  1629.  
  1630.   if (input_file) file_close ();
  1631.  
  1632.   if (entry->search_dirs_flag)
  1633.     {
  1634.       register char **p = search_dirs;
  1635.       int i;
  1636.  
  1637.       for (i = 0; i < n_search_dirs; i++)
  1638.     {
  1639.       register char *string
  1640.         = concat (search_dirs[i], "/", entry->filename);
  1641.       desc = open (string, O_RDONLY, 0);
  1642.       if (desc > 0)
  1643.         {
  1644.           entry->filename = string;
  1645.           entry->search_dirs_flag = 0;
  1646.           break;
  1647.         }
  1648.       free (string);
  1649.     }
  1650.     }
  1651.   else
  1652.     desc = open (entry->filename, O_RDONLY, 0);
  1653.  
  1654.   if (desc > 0)
  1655.     {
  1656.       input_file = entry;
  1657.       input_desc = desc;
  1658.       return desc;
  1659.     }
  1660.  
  1661.   perror_file (entry);
  1662.   /* NOTREACHED */
  1663. }
  1664.  
  1665. /* Print the filename of ENTRY on OUTFILE (a stdio stream),
  1666.    and then a newline.  */
  1667.  
  1668. void
  1669. prline_file_name (entry, outfile)
  1670.      struct file_entry *entry;
  1671.      FILE *outfile;
  1672. {
  1673.   print_file_name (entry, outfile);
  1674.   fprintf (outfile, "\n");
  1675. }
  1676.  
  1677. /* Print the filename of ENTRY on OUTFILE (a stdio stream).  */
  1678.  
  1679. void
  1680. print_file_name (entry, outfile)
  1681.      struct file_entry *entry;
  1682.      FILE *outfile;
  1683. {
  1684.   if (entry->superfile)
  1685.     {
  1686.       print_file_name (entry->superfile, outfile);
  1687.       fprintf (outfile, "(%s)", entry->filename);
  1688.     }
  1689.   else
  1690.     fprintf (outfile, "%s", entry->filename);
  1691. }
  1692.  
  1693. /* Return the filename of entry as a string (malloc'd for the purpose) */
  1694.  
  1695. char *
  1696. get_file_name (entry)
  1697.      struct file_entry *entry;
  1698. {
  1699.   char *result, *supfile;
  1700.   if (entry->superfile)
  1701.     {
  1702.       supfile = get_file_name (entry->superfile);
  1703.       result = (char *) xmalloc (strlen (supfile)
  1704.                  + strlen (entry->filename) + 3);
  1705.       sprintf (result, "%s(%s)", supfile, entry->filename);
  1706.       free (supfile);
  1707.     }
  1708.   else
  1709.     {
  1710.       result = (char *) xmalloc (strlen (entry->filename) + 1);
  1711.       strcpy (result, entry->filename);
  1712.     }
  1713.   return result;
  1714. }
  1715.  
  1716. /* Medium-level input routines for rel files.  */
  1717.  
  1718. /* Read a file's header into the proper place in the file_entry.
  1719.    DESC is the descriptor on which the file is open.
  1720.    ENTRY is the file's entry.  */
  1721.  
  1722. void
  1723. read_header (desc, entry)
  1724.      int desc;
  1725.      register struct file_entry *entry;
  1726. {
  1727.   register int len;
  1728.   struct exec *loc = (struct exec *) &entry->header;
  1729.  
  1730.   lseek (desc, entry->starting_offset, 0);
  1731.   len = read (desc, loc, sizeof (struct exec));
  1732.   if (len != sizeof (struct exec))
  1733.     fatal_with_file ("failure reading header of ", entry);
  1734. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  1735.   fix_exec_header_byte_order(loc);
  1736. #endif
  1737.   if (N_BADMAG (*loc))
  1738.     fatal_with_file ("bad magic number in ", entry);
  1739.  
  1740.   entry->header_read_flag = 1;
  1741. }
  1742.  
  1743. /* Read the symbols of file ENTRY into core.
  1744.    Assume it is already open, on descriptor DESC.
  1745.    Also read the length of the string table, which follows the symbol table,
  1746.    but don't read the contents of the string table.  */
  1747.  
  1748. void
  1749. read_entry_symbols (desc, entry)
  1750.      struct file_entry *entry;
  1751.      int desc;
  1752. {
  1753.   int str_size;
  1754.  
  1755.   if (!entry->header_read_flag)
  1756.     read_header (desc, entry);
  1757.  
  1758.   entry->symbols = (struct nlist *) xmalloc (entry->header.a_syms);
  1759.  
  1760.   lseek (desc, N_SYMOFF (entry->header) + entry->starting_offset, 0);
  1761.   if (entry->header.a_syms != read (desc, entry->symbols, entry->header.a_syms))
  1762.     fatal_with_file ("premature end of file in symbols of ", entry);
  1763. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  1764.   fix_symbol_byte_order(entry->symbols, entry->header.a_syms);
  1765. #endif
  1766.   lseek (desc, N_STROFF (entry->header) + entry->starting_offset, 0);
  1767.   if (sizeof str_size != read (desc, &str_size, sizeof str_size))
  1768.     fatal_with_file ("bad string table size in ", entry);
  1769. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  1770.   fix_byte_order(&str_size, sizeof(str_size));
  1771. #endif
  1772.   entry->string_size = str_size;
  1773. }
  1774.  
  1775. /* Read the string table of file ENTRY into core.
  1776.    Assume it is already open, on descriptor DESC.
  1777.    Also record whether a GDB symbol segment follows the string table.  */
  1778.  
  1779. void
  1780. read_entry_strings (desc, entry)
  1781.      struct file_entry *entry;
  1782.      int desc;
  1783. {
  1784.   int buffer;
  1785.  
  1786.   if (!entry->header_read_flag)
  1787.     read_header (desc, entry);
  1788.  
  1789.   lseek (desc, N_STROFF (entry->header) + entry->starting_offset, 0);
  1790.   if (entry->string_size != read (desc, entry->strings, entry->string_size))
  1791.     fatal_with_file ("premature end of file in strings of ", entry);
  1792.  
  1793.   /* While we are here, see if the file has a symbol segment at the end.
  1794.      For a separate file, just try reading some more.
  1795.      For a library member, compare current pos against total size.  */
  1796.   if (entry->superfile)
  1797.     {
  1798.       if (entry->total_size == N_STROFF (entry->header) + entry->string_size)
  1799.     return;
  1800.     }
  1801.   else
  1802.     {
  1803.       buffer = read (desc, &buffer, sizeof buffer);
  1804.       if (buffer == 0)
  1805.     return;
  1806.       if (buffer != sizeof buffer)
  1807.     fatal_with_file ("premature end of file in GDB symbol segment of ", entry);
  1808.     }
  1809.  
  1810.   entry->symseg_offset = N_STROFF (entry->header) + entry->string_size;
  1811. }
  1812.  
  1813. /* Read in the symbols of all input files.  */
  1814.  
  1815. void read_file_symbols (), read_entry_symbols (), read_entry_strings ();
  1816. void enter_file_symbols (), enter_global_ref (), search_library ();
  1817.  
  1818. void
  1819. load_symbols ()
  1820. {
  1821.   register int i;
  1822.  
  1823.   if (trace_files) fprintf (stderr, "Loading symbols:\n\n");
  1824.  
  1825.   for (i = 0; i < number_of_files; i++)
  1826.     {
  1827.       register struct file_entry *entry = &file_table[i];
  1828.       read_file_symbols (entry);
  1829.     }
  1830.  
  1831.   if (trace_files) fprintf (stderr, "\n");
  1832. }
  1833.  
  1834. /* If ENTRY is a rel file, read its symbol and string sections into core.
  1835.    If it is a library, search it and load the appropriate members
  1836.    (which means calling this function recursively on those members).  */
  1837.  
  1838. void
  1839. read_file_symbols (entry)
  1840.      register struct file_entry *entry;
  1841. {
  1842.   register int desc;
  1843.   register int len;
  1844.   struct exec hdr;
  1845.  
  1846.   desc = file_open (entry);
  1847.  
  1848.   len = read (desc, &hdr, sizeof hdr);
  1849.   if (len != sizeof hdr)
  1850.     fatal_with_file ("failure reading header of ", entry);
  1851. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  1852.   fix_exec_header_byte_order(&hdr);
  1853. #endif
  1854.   if (!N_BADMAG (hdr))
  1855.     {
  1856.       read_entry_symbols (desc, entry);
  1857.       entry->strings = (char *) alloca (entry->string_size);
  1858.       read_entry_strings (desc, entry);
  1859.       enter_file_symbols (entry);
  1860.       entry->strings = 0;
  1861.     }
  1862.   else
  1863.     {
  1864.       char armag[SARMAG];
  1865.  
  1866.       lseek (desc, 0, 0);
  1867.       if (SARMAG != read (desc, armag, SARMAG) || strncmp (armag, ARMAG, SARMAG))
  1868.     fatal_with_file ("malformed input file (not rel or archive) ", entry);
  1869.       entry->library_flag = 1;
  1870.       search_library (desc, entry);
  1871.     }
  1872.  
  1873.   file_close ();
  1874. }
  1875.  
  1876. /* Enter the external symbol defs and refs of ENTRY in the hash table.  */
  1877.  
  1878. void
  1879. enter_file_symbols (entry)
  1880.      struct file_entry *entry;
  1881. {
  1882.   register struct nlist
  1883.     *p,
  1884.     *end = entry->symbols + entry->header.a_syms / sizeof (struct nlist);
  1885.   int lowest_set_vector = -1;
  1886.  
  1887.   if (trace_files) prline_file_name (entry, stderr);
  1888.  
  1889.   for (p = entry->symbols; p < end; p++)
  1890.     {
  1891.       if (p->n_type == (N_SETV | N_EXT)) continue;
  1892.       if (set_element_prefixes
  1893.       && set_element_prefixed_p (p->n_un.n_strx + entry->strings))
  1894.     p->n_type += (N_SETA - N_ABS);
  1895.       if (SET_ELEMENT_P (p->n_type))
  1896.     {
  1897.       set_symbol_count++;
  1898.       if (!relocatable_output)
  1899.         enter_global_ref (p, p->n_un.n_strx + entry->strings, entry);
  1900.     }
  1901.       else if (p->n_type == N_WARNING)
  1902.     {
  1903.       char *name = p->n_un.n_strx + entry->strings;
  1904.  
  1905.       /* Grab the next entry.  */
  1906.       p++;
  1907.       if (p->n_type != (N_UNDF | N_EXT))
  1908.         {
  1909.           fprintf (stderr, "%s: Warning symbol found in %s without external reference following.\n",
  1910.                progname, entry->filename);
  1911.           make_executable = 0;
  1912.           p--;        /* Process normally.  */
  1913.         }
  1914.       else
  1915.         {
  1916.           symbol *sp;
  1917.           char *sname = p->n_un.n_strx + entry->strings; 
  1918.           /* Deal with the warning symbol.  */
  1919.           enter_global_ref (p, p->n_un.n_strx + entry->strings, entry);
  1920.           sp = getsym (sname);
  1921.           sp->warning = (char *) xmalloc (strlen(name) + 1);
  1922.           strcpy (sp->warning, name);
  1923.           warning_count++;
  1924.         }
  1925.     }
  1926.       else if (p->n_type & N_EXT)
  1927.     enter_global_ref (p, p->n_un.n_strx + entry->strings, entry);
  1928.       else if (p->n_un.n_strx && !(p->n_type & (N_STAB | N_EXT)))
  1929.     {
  1930.       if ((p->n_un.n_strx + entry->strings)[0] != LPREFIX)
  1931.         non_L_local_sym_count++;
  1932.       local_sym_count++;
  1933.     }
  1934.       else debugger_sym_count++;
  1935.     }
  1936.  
  1937.    /* Count one for the local symbol that we generate,
  1938.       whose name is the file's name (usually) and whose address
  1939.       is the start of the file's text.  */
  1940.  
  1941.   local_sym_count++;
  1942.   non_L_local_sym_count++;
  1943. }
  1944.  
  1945. /* Enter one global symbol in the hash table.
  1946.    NLIST_P points to the `struct nlist' read from the file
  1947.    that describes the global symbol.  NAME is the symbol's name.
  1948.    ENTRY is the file entry for the file the symbol comes from.
  1949.  
  1950.    The `struct nlist' is modified by placing it on a chain of
  1951.    all such structs that refer to the same global symbol.
  1952.    This chain starts in the `refs' field of the symbol table entry
  1953.    and is chained through the `n_name'.  */
  1954. void
  1955. enter_global_ref (nlist_p, name, entry)
  1956.      register struct nlist *nlist_p;
  1957.      char *name;
  1958.      struct file_entry *entry;
  1959. {
  1960.   register symbol *sp = getsym (name);
  1961.   register int type = nlist_p->n_type;
  1962.   int oldref = sp->referenced;
  1963.   int olddef = sp->defined;
  1964.  
  1965.   nlist_p->n_un.n_name = (char *) sp->refs;
  1966.   sp->refs = nlist_p;
  1967.  
  1968.   sp->referenced = 1;
  1969.   if (type != (N_UNDF | N_EXT) || nlist_p->n_value)
  1970.     {
  1971.       if (!sp->defined || sp->defined == (N_UNDF | N_EXT))
  1972.     sp->defined = type;
  1973.  
  1974.       if (oldref && !olddef)
  1975.     /* It used to be undefined and we're defining it.  */
  1976.     undefined_global_sym_count--;
  1977.  
  1978.       if (!olddef && type == (N_UNDF | N_EXT) && nlist_p->n_value)
  1979.     {
  1980.       /* First definition and it's common.  */
  1981.       common_defined_global_count++;
  1982.       sp->max_common_size = nlist_p->n_value;
  1983.     }
  1984.       else if (olddef && sp->max_common_size && type != (N_UNDF | N_EXT))
  1985.     {
  1986.       /* It used to be common and we're defining it as
  1987.          something else.  */
  1988.       common_defined_global_count--;
  1989.       sp->max_common_size = 0;
  1990.     }
  1991.       else if (olddef && sp->max_common_size && type == (N_UNDF | N_EXT)
  1992.       && sp->max_common_size < nlist_p->n_value)
  1993.     /* It used to be common and this is a new common entry to
  1994.        which we need to pay attention.  */
  1995.     sp->max_common_size = nlist_p->n_value;
  1996.  
  1997.       /* Are we defining it as a set element?  */
  1998.       if (SET_ELEMENT_P (type)
  1999.       && (!olddef || (olddef && sp->max_common_size)))
  2000.     set_vector_count++;
  2001.       /* As an indirection?  */
  2002.       else if (type == (N_INDR | N_EXT))
  2003.     {
  2004.       /* Indirect symbols value should be modified to point
  2005.          a symbol being equivalenced to. */
  2006.       nlist_p->n_value
  2007.         = (unsigned int) getsym ((nlist_p + 1)->n_un.n_strx
  2008.                      + entry->strings);
  2009.       if ((symbol *) nlist_p->n_value == sp)
  2010.         {
  2011.           /* Somebody redefined a symbol to be itself.  */
  2012.           fprintf (stderr, "%s: Symbol %s indirected to itself.\n",
  2013.                entry->filename, name);
  2014.           /* Rewrite this symbol as being a global text symbol
  2015.          with value 0.  */
  2016.           nlist_p->n_type = sp->defined = N_TEXT | N_EXT;
  2017.           nlist_p->n_value = 0;
  2018.           /* Don't make the output executable.  */
  2019.           make_executable = 0;
  2020.         }
  2021.       else
  2022.         global_indirect_count++;
  2023.     }
  2024.     }
  2025.   else
  2026.     if (!oldref)
  2027. #ifndef DOLLAR_KLUDGE
  2028.       undefined_global_sym_count++;
  2029. #else
  2030.       {
  2031.     if (entry->superfile && type == (N_UNDF | N_EXT) && name[1] == '$')
  2032.       {
  2033.         /* This is an (ISI?) $-conditional; skip it */
  2034.         sp->referenced = 0;
  2035.         if (sp->trace)
  2036.           {
  2037.         fprintf (stderr, "symbol %s is a $-conditional ignored in ", sp->name);
  2038.         print_file_name (entry, stderr);
  2039.         fprintf (stderr, "\n");
  2040.           }
  2041.         return;
  2042.       }
  2043.     else
  2044.       undefined_global_sym_count++;
  2045.       }
  2046. #endif
  2047.  
  2048.   if (sp == end_symbol && entry->just_syms_flag && !T_flag_specified)
  2049.     text_start = nlist_p->n_value;
  2050.  
  2051.   if (sp->trace)
  2052.     {
  2053.       register char *reftype;
  2054.       switch (type & N_TYPE)
  2055.     {
  2056.     case N_UNDF:
  2057.       if (nlist_p->n_value)
  2058.         reftype = "defined as common";
  2059.       else reftype = "referenced";
  2060.       break;
  2061.  
  2062.     case N_ABS:
  2063.       reftype = "defined as absolute";
  2064.       break;
  2065.  
  2066.     case N_TEXT:
  2067.       reftype = "defined in text section";
  2068.       break;
  2069.  
  2070.     case N_DATA:
  2071.       reftype = "defined in data section";
  2072.       break;
  2073.  
  2074.     case N_BSS:
  2075.       reftype = "defined in BSS section";
  2076.       break;
  2077.  
  2078.     case N_SETT:
  2079.       reftype = "is a text set element";
  2080.       break;
  2081.  
  2082.     case N_SETD:
  2083.       reftype = "is a data set element";
  2084.       break;
  2085.  
  2086.     case N_SETB:
  2087.       reftype = "is a BSS set element";
  2088.       break;
  2089.  
  2090.     case N_SETA:
  2091.       reftype = "is an absolute set element";
  2092.       break;
  2093.  
  2094.     case N_SETV:
  2095.       reftype = "defined in data section as vector";
  2096.       break;
  2097.  
  2098.     case N_INDR:
  2099.       reftype = (char *) alloca (23
  2100.                      + strlen ((nlist_p + 1)->n_un.n_strx
  2101.                            + entry->strings));
  2102.       sprintf (reftype, "defined equivalent to %s",
  2103.            (nlist_p + 1)->n_un.n_strx + entry->strings);
  2104.       break;
  2105.  
  2106. #if TARGET_MACHINE==TARGET_SEQUENT
  2107.     case N_SHUNDF:
  2108.       reftype = "shared undf";
  2109.       break;
  2110.  
  2111. /* These conflict with cases above.
  2112.     case N_SHDATA:
  2113.       reftype = "shared data";
  2114.       break;
  2115.  
  2116.     case N_SHBSS:
  2117.       reftype = "shared BSS";
  2118.       break;
  2119. */
  2120.     default:
  2121.       reftype = "I don't know this type";
  2122.       break;
  2123. #endif
  2124.     }
  2125.  
  2126.       fprintf (stderr, "symbol %s %s in ", sp->name, reftype);
  2127.       print_file_name (entry, stderr);
  2128.       fprintf (stderr, "\n");
  2129.     }
  2130. }
  2131.  
  2132. /* This return 0 if the given file entry's symbol table does *not*
  2133.    contain the nlist point entry, and it returns the files entry
  2134.    pointer (cast to unsigned long) if it does. */
  2135.  
  2136. #if 0
  2137. unsigned long
  2138. contains_symbol (entry, n_ptr)
  2139.      struct file_entry *entry;
  2140.      register struct nlist *n_ptr;
  2141. {
  2142.   if (n_ptr >= entry->symbols &&
  2143.       n_ptr < (entry->symbols
  2144.            + (entry->header.a_syms / sizeof (struct nlist))))
  2145.     return (unsigned long) entry;
  2146.   return 0;
  2147. }
  2148. #endif
  2149.  
  2150.  
  2151. /* Searching libraries */
  2152.  
  2153. struct file_entry *decode_library_subfile ();
  2154. void linear_library (), symdef_library ();
  2155.  
  2156. /* Search the library ENTRY, already open on descriptor DESC.
  2157.    This means deciding which library members to load,
  2158.    making a chain of `struct file_entry' for those members,
  2159.    and entering their global symbols in the hash table.  */
  2160.  
  2161. void
  2162. search_library (desc, entry)
  2163.      int desc;
  2164.      struct file_entry *entry;
  2165. {
  2166.   int member_length;
  2167.   register char *name;
  2168.   register struct file_entry *subentry;
  2169.  
  2170.   if (!undefined_global_sym_count) return;
  2171.  
  2172.   /* Examine its first member, which starts SARMAG bytes in.  */
  2173.   subentry = decode_library_subfile (desc, entry, SARMAG, &member_length);
  2174.   if (!subentry) return;
  2175.  
  2176.   name = subentry->filename;
  2177.   free (subentry);
  2178.  
  2179.   /* Search via __.SYMDEF if that exists, else linearly.  */
  2180.  
  2181.   if (!strcmp (name, "__.SYMDEF"))
  2182.     symdef_library (desc, entry, member_length);
  2183.   else
  2184.     linear_library (desc, entry);
  2185. }
  2186.  
  2187. /* Construct and return a file_entry for a library member.
  2188.    The library's file_entry is library_entry, and the library is open on DESC.
  2189.    SUBFILE_OFFSET is the byte index in the library of this member's header.
  2190.    We store the length of the member into *LENGTH_LOC.  */
  2191.  
  2192. struct file_entry *
  2193. decode_library_subfile (desc, library_entry, subfile_offset, length_loc)
  2194.      int desc;
  2195.      struct file_entry *library_entry;
  2196.      int subfile_offset;
  2197.      int *length_loc;
  2198. {
  2199.   int bytes_read;
  2200.   register int namelen;
  2201.   int member_length;
  2202.   register char *name;
  2203.   struct ar_hdr hdr1;
  2204.   register struct file_entry *subentry;
  2205.  
  2206.   lseek (desc, subfile_offset, 0);
  2207.  
  2208.   bytes_read = read (desc, &hdr1, sizeof hdr1);
  2209.   if (!bytes_read)
  2210.     return 0;        /* end of archive */
  2211.  
  2212.   if (sizeof hdr1 != bytes_read)
  2213.     fatal_with_file ("malformed library archive ", library_entry);
  2214.  
  2215.   if (sscanf (hdr1.ar_size, "%d", &member_length) != 1)
  2216.     fatal_with_file ("malformatted header of archive member in ", library_entry);
  2217.  
  2218.   subentry = (struct file_entry *) xmalloc (sizeof (struct file_entry));
  2219.   bzero (subentry, sizeof (struct file_entry));
  2220.  
  2221.   for (namelen = 0;
  2222.        namelen < sizeof hdr1.ar_name
  2223.        && hdr1.ar_name[namelen] != 0 && hdr1.ar_name[namelen] != ' '
  2224.        && hdr1.ar_name[namelen] != '/';
  2225.        namelen++);
  2226.  
  2227.   name = (char *) xmalloc (namelen+1);
  2228.   strncpy (name, hdr1.ar_name, namelen);
  2229.   name[namelen] = 0;
  2230.  
  2231.   subentry->filename = name;
  2232.   subentry->local_sym_name = name;
  2233.   subentry->symbols = 0;
  2234.   subentry->strings = 0;
  2235.   subentry->subfiles = 0;
  2236.   subentry->starting_offset = subfile_offset + sizeof hdr1;
  2237.   subentry->superfile = library_entry;
  2238.   subentry->library_flag = 0;
  2239.   subentry->header_read_flag = 0;
  2240.   subentry->just_syms_flag = 0;
  2241.   subentry->chain = 0;
  2242.   subentry->total_size = member_length;
  2243.  
  2244.   (*length_loc) = member_length;
  2245.  
  2246.   return subentry;
  2247. }
  2248.  
  2249. int subfile_wanted_p ();
  2250.  
  2251. /* Search a library that has a __.SYMDEF member.
  2252.    DESC is a descriptor on which the library is open.
  2253.      The file pointer is assumed to point at the __.SYMDEF data.
  2254.    ENTRY is the library's file_entry.
  2255.    MEMBER_LENGTH is the length of the __.SYMDEF data.  */
  2256.  
  2257. void
  2258. symdef_library (desc, entry, member_length)
  2259.      int desc;
  2260.      struct file_entry *entry;
  2261.      int member_length;
  2262. {
  2263.   int *symdef_data = (int *) xmalloc (member_length);
  2264.   register struct symdef *symdef_base;
  2265.   char *sym_name_base;
  2266.   int number_of_symdefs;
  2267.   int length_of_strings;
  2268.   int not_finished;
  2269.   int bytes_read;
  2270.   register int i;
  2271.   struct file_entry *prev = 0;
  2272.   int prev_offset = 0;
  2273.  
  2274.   bytes_read = read (desc, symdef_data, member_length);
  2275.   if (bytes_read != member_length)
  2276.     fatal_with_file ("malformatted __.SYMDEF in ", entry);
  2277. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  2278.   fix_byte_order(symdef_data, sizeof(*symdef_data));
  2279. #endif
  2280.   number_of_symdefs = *symdef_data / sizeof (struct symdef);
  2281.   if (number_of_symdefs < 0 ||
  2282.        number_of_symdefs * sizeof (struct symdef) + 2 * sizeof (int) > member_length)
  2283.     fatal_with_file ("malformatted __.SYMDEF in ", entry);
  2284.  
  2285.   symdef_base = (struct symdef *) (symdef_data + 1);
  2286. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  2287.   for (i = 0; i < number_of_symdefs; ++i)
  2288.     {
  2289.       fix_byte_order(&symdef_base[i].symbol_name_string_index, sizeof(int));
  2290.       fix_byte_order(&symdef_base[i].library_member_offset, sizeof(int));
  2291.     }
  2292.   fix_byte_order(symdef_base + number_of_symdefs, sizeof(int));
  2293. #endif
  2294.   length_of_strings = *(int *) (symdef_base + number_of_symdefs);
  2295.  
  2296.   if (length_of_strings < 0
  2297.       || number_of_symdefs * sizeof (struct symdef) + length_of_strings
  2298.       + 2 * sizeof (int) != member_length)
  2299.     fatal_with_file ("malformatted __.SYMDEF in ", entry);
  2300.  
  2301.   sym_name_base = sizeof (int) + (char *) (symdef_base + number_of_symdefs);
  2302.  
  2303.   /* Check all the string indexes for validity.  */
  2304.  
  2305.   for (i = 0; i < number_of_symdefs; i++)
  2306.     {
  2307.       register int index = symdef_base[i].symbol_name_string_index;
  2308.       if (index < 0 || index >= length_of_strings
  2309.       || (index && *(sym_name_base + index - 1)))
  2310.     fatal_with_file ("malformatted __.SYMDEF in ", entry);
  2311.     }
  2312.  
  2313.   /* Search the symdef data for members to load.
  2314.      Do this until one whole pass finds nothing to load.  */
  2315.  
  2316.   not_finished = 1;
  2317.   while (not_finished)
  2318.     {
  2319.       not_finished = 0;
  2320.  
  2321.       /* Scan all the symbols mentioned in the symdef for ones that we need.
  2322.      Load the library members that contain such symbols.  */
  2323.  
  2324.       for (i = 0;
  2325.        (i < number_of_symdefs
  2326.         && (undefined_global_sym_count || common_defined_global_count));
  2327.        i++)
  2328.     if (symdef_base[i].symbol_name_string_index >= 0)
  2329.       {
  2330.         register symbol *sp;
  2331.  
  2332.         sp = getsym_soft (sym_name_base
  2333.                   + symdef_base[i].symbol_name_string_index);
  2334.  
  2335.         /* If we find a symbol that appears to be needed, think carefully
  2336.            about the archive member that the symbol is in.  */
  2337.  
  2338.         if (sp && ((sp->referenced && !sp->defined)
  2339. #if 1        
  2340.                || (sp->defined && sp->max_common_size))
  2341. #endif
  2342.                )
  2343.           {
  2344.         int junk;
  2345.         register int j;
  2346.         register int offset = symdef_base[i].library_member_offset;
  2347.         struct file_entry *subentry;
  2348.  
  2349.         /* Don't think carefully about any archive member
  2350.            more than once in a given pass.  */
  2351.  
  2352.         if (prev_offset == offset)
  2353.           continue;
  2354.         prev_offset = offset;
  2355.  
  2356.         /* Read the symbol table of the archive member.  */
  2357.  
  2358.         subentry = decode_library_subfile (desc, entry, offset, &junk);
  2359.         if (subentry == 0)
  2360.           fatal ("invalid offset for %s in symbol table of %s",
  2361.              sym_name_base
  2362.              + symdef_base[i].symbol_name_string_index,
  2363.              entry->filename);
  2364.         read_entry_symbols (desc, subentry);
  2365.         subentry->strings = (char *) malloc (subentry->string_size);
  2366.         read_entry_strings (desc, subentry);
  2367.  
  2368.         /* Now scan the symbol table and decide whether to load.  */
  2369.  
  2370.         if (!subfile_wanted_p (subentry))
  2371.           {
  2372.             free (subentry->symbols);
  2373.             free (subentry);
  2374.           }
  2375.         else
  2376.           {
  2377.             /* This member is needed; load it.
  2378.                Since we are loading something on this pass,
  2379.                we must make another pass through the symdef data.  */
  2380.  
  2381.             not_finished = 1;
  2382.  
  2383.             enter_file_symbols (subentry);
  2384.  
  2385.             if (prev)
  2386.               prev->chain = subentry;
  2387.             else entry->subfiles = subentry;
  2388.             prev = subentry;
  2389.  
  2390.             /* Clear out this member's symbols from the symdef data
  2391.                so that following passes won't waste time on them.  */
  2392.  
  2393.             for (j = 0; j < number_of_symdefs; j++)
  2394.               {
  2395.             if (symdef_base[j].library_member_offset == offset)
  2396.               symdef_base[j].symbol_name_string_index = -1;
  2397.               }
  2398.           }
  2399.  
  2400.         /* We'll read the strings again if we need them again.  */
  2401.         free (subentry->strings);
  2402.         subentry->strings = 0;
  2403.           }
  2404.       }
  2405.     }
  2406.  
  2407.   free (symdef_data);
  2408. }
  2409.  
  2410.  
  2411. /* Handle a subentry for a file with no __.SYMDEF. */
  2412.  
  2413. process_subentry (desc, subentry, entry, prev_addr)
  2414.      int desc;
  2415.      register struct file_entry *subentry;
  2416.      struct file_entry **prev_addr, *entry;
  2417. {
  2418.   register struct file_entry *prev = *prev_addr;
  2419.  
  2420.   read_entry_symbols (desc, subentry);
  2421.   subentry->strings = (char *) alloca (subentry->string_size);
  2422.   read_entry_strings (desc, subentry);
  2423.  
  2424.   if (!subfile_wanted_p (subentry))
  2425.     {
  2426.       free (subentry->symbols);
  2427.       free (subentry);
  2428.     }
  2429.   else
  2430.     {
  2431.       enter_file_symbols (subentry);
  2432.  
  2433.       if (prev)
  2434.     prev->chain = subentry;
  2435.       else
  2436.     entry->subfiles = subentry;
  2437.       prev = subentry;
  2438.       subentry->strings = 0; /* Since space will dissapear on return */
  2439.     }
  2440. }
  2441.  
  2442. /* Search a library that has no __.SYMDEF.
  2443.    ENTRY is the library's file_entry.
  2444.    DESC is the descriptor it is open on.  */
  2445.  
  2446. void
  2447. linear_library (desc, entry)
  2448.      int desc;
  2449.      struct file_entry *entry;
  2450. {
  2451.   struct file_entry *prev = 0;
  2452.   register int this_subfile_offset = SARMAG;
  2453.  
  2454.   while (undefined_global_sym_count || common_defined_global_count)
  2455.     {
  2456.       int member_length;
  2457.       register struct file_entry *subentry;
  2458.  
  2459.       subentry = decode_library_subfile (desc, entry, this_subfile_offset,
  2460.                      &member_length);
  2461.       if (!subentry) return;
  2462.  
  2463.       process_subentry (desc, subentry, entry, &prev);
  2464.       this_subfile_offset += member_length + sizeof (struct ar_hdr);
  2465.       if (this_subfile_offset & 1) this_subfile_offset++;
  2466.     }
  2467. }
  2468.  
  2469. /* ENTRY is an entry for a library member.
  2470.    Its symbols have been read into core, but not entered.
  2471.    Return nonzero if we ought to load this member.  */
  2472. int
  2473. subfile_wanted_p (entry)
  2474.      struct file_entry *entry;
  2475. {
  2476.   register struct nlist *p;
  2477.   register struct nlist *end
  2478.     = entry->symbols + entry->header.a_syms / sizeof (struct nlist);
  2479. #ifdef DOLLAR_KLUDGE
  2480.   register int dollar_cond = 0;
  2481. #endif
  2482.  
  2483.   for (p = entry->symbols; p < end; p++)
  2484.     {
  2485.       register int type = p->n_type;
  2486.       register char *name = p->n_un.n_strx + entry->strings;
  2487.  
  2488.       /* If the symbol has an interesting definition, we could
  2489.      potentially want it.  */
  2490.       if (type & N_EXT
  2491.       && (type != (N_UNDF | N_EXT) || p->n_value
  2492.  
  2493. #ifdef DOLLAR_KLUDGE
  2494.            || name[1] == '$'
  2495. #endif
  2496.           )
  2497. #ifdef foobar          
  2498.       && !SET_ELEMENT_P (type)
  2499.       && !set_element_prefixed_p (name)
  2500. #endif          
  2501.           )
  2502.     {
  2503.       register symbol *sp = getsym_soft (name);
  2504.  
  2505. #ifdef DOLLAR_KLUDGE
  2506.       if (name[1] == '$')
  2507.         {
  2508.           sp = getsym_soft (&name[2]);
  2509.           dollar_cond = 1;
  2510.           if (!sp) continue;
  2511.           if (sp->referenced)
  2512.         {
  2513.           if (write_map)
  2514.             {
  2515.               print_file_name (entry, stdout);
  2516.               fprintf (stdout, " needed due to $-conditional %s\n", name);
  2517.             }
  2518.           return 1;
  2519.         }
  2520.           continue;
  2521.         }
  2522. #endif
  2523.  
  2524.       /* If this symbol has not been hashed, we can't be looking for it. */
  2525.  
  2526.       if (!sp) continue;
  2527.  
  2528.       if ((sp->referenced && !sp->defined)
  2529. #ifdef foobar          
  2530.           || (sp->defined && sp->max_common_size)
  2531. #endif
  2532.           )
  2533.         {
  2534.           /* This is a symbol we are looking for.  It is either
  2535.              not yet defined or defined as a common.  */
  2536. #ifdef DOLLAR_KLUDGE
  2537.           if (dollar_cond) continue;
  2538. #endif
  2539.           if (type == (N_UNDF | N_EXT))
  2540.         {
  2541.           /* Symbol being defined as common.
  2542.              Remember this, but don't load subfile just for this.  */
  2543. #if foobar
  2544.           /* If it didn't used to be common, up the count of
  2545.              common symbols.  */
  2546.           if (!sp->max_common_size)
  2547.             common_defined_global_count++;
  2548. #endif
  2549.           if (sp->max_common_size < p->n_value)
  2550.             sp->max_common_size = p->n_value;
  2551.           if (!sp->defined)
  2552.             undefined_global_sym_count--;
  2553.           sp->defined = 1;
  2554.           continue;
  2555.         }
  2556.  
  2557.           if (write_map)
  2558.         {
  2559.           print_file_name (entry, stdout);
  2560.           fprintf (stdout, " needed due to %s\n", sp->name);
  2561.         }
  2562.           return 1;
  2563.         }
  2564.     }
  2565.     }
  2566.  
  2567.   return 0;
  2568. }
  2569.  
  2570. void consider_file_section_lengths (), relocate_file_addresses ();
  2571.  
  2572. /* Having entered all the global symbols and found the sizes of sections
  2573.    of all files to be linked, make all appropriate deductions from this data.
  2574.  
  2575.    We propagate global symbol values from definitions to references.
  2576.    We compute the layout of the output file and where each input file's
  2577.    contents fit into it.  */
  2578.  
  2579. void
  2580. digest_symbols ()
  2581. {
  2582.   register int i;
  2583.   int setv_fill_count = 0;
  2584.  
  2585.   if (trace_files)
  2586.     fprintf (stderr, "Digesting symbol information:\n\n");
  2587.  
  2588.   /* Compute total size of sections */
  2589.  
  2590.   each_file (consider_file_section_lengths, 0);
  2591.  
  2592.   /* If necessary, pad text section to full page in the file.
  2593.      Include the padding in the text segment size.  */
  2594.  
  2595. #ifdef NMAGIC
  2596.   if (magic == ZMAGIC || magic == NMAGIC)
  2597. #else
  2598.   if (magic == ZMAGIC)
  2599. #endif
  2600.     {
  2601.       int text_end = text_size + N_TXTOFF (outheader);
  2602.       text_pad = ((text_end + page_size - 1) & (- page_size)) - text_end;
  2603.       text_size += text_pad;
  2604.     }
  2605.  
  2606.   if (specified_data_size && specified_data_size > data_size)
  2607.     data_pad = specified_data_size - data_size;
  2608.  
  2609.   if (magic == ZMAGIC)
  2610.     data_pad = ((data_pad + data_size + page_size - 1) & (- page_size))
  2611.                - data_size;
  2612.  
  2613.   if (bss_size < 0) bss_size = 0;
  2614.  
  2615.   data_size += data_pad;
  2616.  
  2617.   outheader.a_text = text_size;
  2618. #if TARGET_MACHINE==TARGET_SEQUENT
  2619.   outheader.a_text += N_ADDRADJ (outheader);
  2620. #endif
  2621.  
  2622.   /* Make the data segment address start in memory on a suitable boundary.  */
  2623.  
  2624.   if (! Tdata_flag_specified)
  2625.     data_start = N_DATADDR (outheader) + text_start - N_TXTADDR (outheader);
  2626. #ifdef foobar
  2627.   /* Make sure bss starts out aligned as much as anyone can want.  */
  2628.  
  2629.   data_size = (data_size + sizeof(double) - 1) & ~(sizeof(double)-1);
  2630. #endif
  2631.   /* Set up the set element vector */
  2632.  
  2633.   if (!relocatable_output)
  2634.     {
  2635.       /* The set sector size is the number of set elements + a word
  2636.          for each symbol for the length word at the beginning of the
  2637.      vector, plus a word for each symbol for a zero at the end of
  2638.      the vector (for incremental linking).  */
  2639.       set_sect_size
  2640.     = (2 * set_symbol_count + set_vector_count) * sizeof (unsigned long);
  2641.       set_sect_start = data_start + data_size;
  2642.       data_size += set_sect_size;
  2643.       set_vectors = (unsigned long *) xmalloc (set_sect_size);
  2644. #if 1
  2645.       setv_fill_count = 0;
  2646. #endif      
  2647.     }
  2648.  
  2649.   /* Compute start addresses of each file's sections and symbols.  */
  2650.  
  2651.   each_full_file (relocate_file_addresses, 0);
  2652.  
  2653.   /* Now, for each symbol, verify that it is defined globally at most once.
  2654.      Put the global value into the symbol entry.
  2655.      Common symbols are allocated here, in the BSS section.
  2656.      Each defined symbol is given a '->defined' field
  2657.       which is the correct N_ code for its definition,
  2658.       except in the case of common symbols with -r.
  2659.      Then make all the references point at the symbol entry
  2660.      instead of being chained together. */
  2661.  
  2662.   defined_global_sym_count = 0;
  2663.  
  2664.   for (i = 0; i < TABSIZE; i++)
  2665.     {
  2666.       register symbol *sp;
  2667.       for (sp = symtab[i]; sp; sp = sp->link)
  2668.     {
  2669.       /* For each symbol */
  2670.       register struct nlist *p, *next;
  2671.       int defs = 0, com = sp->max_common_size, erred = 0;
  2672.       struct nlist *first_definition;
  2673.       for (p = sp->refs; p; p = next)
  2674.         {
  2675.           register int type = p->n_type;
  2676.  
  2677.           if (SET_ELEMENT_P (type))
  2678.         {
  2679.           if (relocatable_output)
  2680.             fatal ("internal: global ref to set element with -r");
  2681.           if (!defs++)
  2682.             {
  2683.               sp->value = set_sect_start
  2684.             + setv_fill_count++ * sizeof (unsigned long);
  2685.               sp->defined = N_SETV | N_EXT;
  2686.               first_definition = p;
  2687.             }
  2688.           else if ((sp->defined & ~N_EXT) != N_SETV)
  2689.             {
  2690.               sp->multiply_defined = 1;
  2691.               multiple_def_count++;
  2692.             }
  2693.           set_vectors[setv_fill_count++] = p->n_value;
  2694.         }
  2695.           else if ((type & N_EXT) && type != (N_UNDF | N_EXT))
  2696.         {
  2697.           /* non-common definition */
  2698.           if (defs++ && sp->value != p->n_value)
  2699.             {
  2700.               sp->multiply_defined = 1;
  2701.               multiple_def_count++;
  2702.             }
  2703.           sp->value = p->n_value;
  2704.           sp->defined = type;
  2705.           first_definition = p;
  2706.         }
  2707.           next = (struct nlist *) p->n_un.n_name;
  2708.           p->n_un.n_name = (char *) sp;
  2709.         }
  2710.       /* Allocate as common if defined as common and not defined for real */
  2711.       if (com && !defs)
  2712.         {
  2713.           if (!relocatable_output || force_common_definition)
  2714.         {
  2715.           int align = sizeof (int);
  2716.  
  2717.           /* Round up to nearest sizeof (int).  I don't know
  2718.              whether this is necessary or not (given that
  2719.              alignment is taken care of later), but it's
  2720.              traditional, so I'll leave it in.  Note that if
  2721.              this size alignment is ever removed, ALIGN above
  2722.              will have to be initialized to 1 instead of
  2723.              sizeof (int).  */
  2724.  
  2725.           com = (com + sizeof (int) - 1) & (- sizeof (int));
  2726.  
  2727.           while (!(com & align))
  2728.             align <<= 1;
  2729.  
  2730.           align = align > MAX_ALIGNMENT ? MAX_ALIGNMENT : align;
  2731.  
  2732.           bss_size = ((((bss_size + data_size + data_start)
  2733.                   + (align - 1)) & (- align))
  2734.                   - data_size - data_start);
  2735.  
  2736.           sp->value = data_start + data_size + bss_size;
  2737.           sp->defined = N_BSS | N_EXT;
  2738.           bss_size += com;
  2739.           if (write_map)
  2740.             printf ("Allocating common %s: %x at %x\n",
  2741.                 sp->name, com, sp->value);
  2742.         }
  2743.           else
  2744.         {
  2745.           sp->defined = 0;
  2746.           undefined_global_sym_count++;
  2747.         }
  2748.         }
  2749.       /* Set length word at front of vector and zero byte at end.
  2750.          Reverse the vector itself to put it in file order.  */
  2751.       if ((sp->defined & ~N_EXT) == N_SETV)
  2752.         {
  2753.           unsigned long length_word_index
  2754.         = (sp->value - set_sect_start) / sizeof (unsigned long);
  2755.           unsigned long i, tmp;
  2756.  
  2757.           set_vectors[length_word_index]
  2758.         = setv_fill_count - 1 - length_word_index;
  2759. #ifdef foobar
  2760.           /* Reverse the vector.  */
  2761.           for (i = 1;
  2762.            i < (setv_fill_count - length_word_index - 1) / 2 + 1;
  2763.            i++)
  2764.         {
  2765.           tmp = set_vectors[length_word_index + i];
  2766.           set_vectors[length_word_index + i]
  2767.             = set_vectors[setv_fill_count - i];
  2768.           set_vectors[setv_fill_count - i] = tmp;
  2769. #endif        }
  2770.  
  2771.           set_vectors[setv_fill_count++] = 0;
  2772.         }
  2773.       if (sp->defined)
  2774.         defined_global_sym_count++;
  2775.     }
  2776.     }
  2777.  
  2778. #ifdef foobar
  2779.   /* Make sure end of bss is aligned as much as anyone can want.  */
  2780.  
  2781.   bss_size = (bss_size + sizeof(double) - 1) & ~(sizeof(double)-1);
  2782. #endif
  2783. #if 1  
  2784.   if (end_symbol)        /* These are null if -r.  */
  2785.     {
  2786.       etext_symbol->value = text_size + text_start;
  2787.       edata_symbol->value = data_start + data_size;
  2788.       end_symbol->value = data_start + data_size + bss_size;
  2789.     }
  2790. #endif
  2791. }
  2792.  
  2793. /* Accumulate the section sizes of input file ENTRY
  2794.    into the section sizes of the output file.  */
  2795.  
  2796. void
  2797. consider_file_section_lengths (entry)
  2798.      register struct file_entry *entry;
  2799. {
  2800.   if (entry->just_syms_flag)
  2801.     return;
  2802.  
  2803.   entry->text_start_address = text_size;
  2804.   /* If there were any vectors, we need to chop them off */
  2805.   text_size += entry->header.a_text;
  2806.   entry->data_start_address = data_size;
  2807.   data_size += entry->header.a_data;
  2808.   entry->bss_start_address = bss_size;
  2809.   bss_size += entry->header.a_bss;
  2810.  
  2811.   text_reloc_size += entry->header.a_trsize;
  2812.   data_reloc_size += entry->header.a_drsize;
  2813. }
  2814.  
  2815. /* Determine where the sections of ENTRY go into the output file,
  2816.    whose total section sizes are already known.
  2817.    Also relocate the addresses of the file's local and debugger symbols.  */
  2818.  
  2819. void
  2820. relocate_file_addresses (entry)
  2821.      register struct file_entry *entry;
  2822. {
  2823.   entry->text_start_address += text_start;
  2824.   /* Note that `data_start' and `data_size' have not yet been
  2825.      adjusted for `data_pad'.  If they had been, we would get the wrong
  2826.      results here.  */
  2827.   entry->data_start_address += data_start;
  2828.   entry->bss_start_address += data_start + data_size;
  2829.  
  2830.   {
  2831.     register struct nlist *p;
  2832.     register struct nlist *end
  2833.       = entry->symbols + entry->header.a_syms / sizeof (struct nlist);
  2834.  
  2835.     for (p = entry->symbols; p < end; p++)
  2836.       {
  2837.     /* If this belongs to a section, update it by the section's start address */
  2838.     register int type = p->n_type & N_TYPE;
  2839.  
  2840.     switch (type)
  2841.       {
  2842.       case N_TEXT:
  2843.       case N_SETT:
  2844.         p->n_value += entry->text_start_address;
  2845.         break;
  2846.       case N_DATA:
  2847.       case N_SETV:
  2848.       case N_SETD:
  2849.         /* A symbol whose value is in the data section
  2850.            is present in the input file as if the data section
  2851.            started at an address equal to the length of the file's text.  */
  2852.         p->n_value += entry->data_start_address - entry->header.a_text;
  2853.         break;
  2854.       case N_BSS:
  2855.       case N_SETB:
  2856.         /* likewise for symbols with value in BSS.  */
  2857.         p->n_value += entry->bss_start_address
  2858.           - entry->header.a_text - entry->header.a_data;
  2859.         break;
  2860.       }
  2861.       }
  2862.   }
  2863. }
  2864.  
  2865. void describe_file_sections (), list_file_locals ();
  2866.  
  2867. /* Print a complete or partial map of the output file.  */
  2868.  
  2869. void
  2870. print_symbols (outfile)
  2871.      FILE *outfile;
  2872. {
  2873.   register int i;
  2874.  
  2875.   fprintf (outfile, "\nFiles:\n\n");
  2876.  
  2877.   each_file (describe_file_sections, outfile);
  2878.  
  2879.   fprintf (outfile, "\nGlobal symbols:\n\n");
  2880.  
  2881.   for (i = 0; i < TABSIZE; i++)
  2882.     {
  2883.       register symbol *sp;
  2884.       for (sp = symtab[i]; sp; sp = sp->link)
  2885.     {
  2886.       if (sp->defined == 1)
  2887.         fprintf (outfile, "  %s: common, length 0x%x\n", sp->name, sp->max_common_size);
  2888.       if (sp->defined)
  2889.         fprintf (outfile, "  %s: 0x%x\n", sp->name, sp->value);
  2890.       else if (sp->referenced)
  2891.         fprintf (outfile, "  %s: undefined\n", sp->name);
  2892.     }
  2893.     }
  2894.  
  2895.   each_file (list_file_locals, outfile);
  2896. }
  2897.  
  2898. void
  2899. describe_file_sections (entry, outfile)
  2900.      struct file_entry *entry;
  2901.      FILE *outfile;
  2902. {
  2903.   fprintf (outfile, "  ");
  2904.   print_file_name (entry, outfile);
  2905.   if (entry->just_syms_flag)
  2906.     fprintf (outfile, " symbols only\n", 0);
  2907.   else
  2908.     fprintf (outfile, " text %x(%x), data %x(%x), bss %x(%x) hex\n",
  2909.          entry->text_start_address, entry->header.a_text,
  2910.          entry->data_start_address, entry->header.a_data,
  2911.          entry->bss_start_address, entry->header.a_bss);
  2912. }
  2913.  
  2914. void
  2915. list_file_locals (entry, outfile)
  2916.      struct file_entry *entry;
  2917.      FILE *outfile;
  2918. {
  2919.   register struct nlist
  2920.     *p,
  2921.     *end = entry->symbols + entry->header.a_syms / sizeof (struct nlist);
  2922.  
  2923.   entry->strings = (char *) alloca (entry->string_size);
  2924.   read_entry_strings (file_open (entry), entry);
  2925.  
  2926.   fprintf (outfile, "\nLocal symbols of ");
  2927.   print_file_name (entry, outfile);
  2928.   fprintf (outfile, ":\n\n");
  2929.  
  2930.   for (p = entry->symbols; p < end; p++)
  2931.     /* If this is a definition,
  2932.        update it if necessary by this file's start address.  */
  2933.     if (!(p->n_type & (N_STAB | N_EXT)))
  2934.       fprintf (outfile, "  %s: 0x%x\n",
  2935.            entry->strings + p->n_un.n_strx, p->n_value);
  2936.  
  2937.   entry->strings = 0;        /* All done with them.  */
  2938. }
  2939.  
  2940.  
  2941. /* Static vars for do_warnings and subroutines of it */
  2942. int list_unresolved_refs;    /* List unresolved refs */
  2943. int list_warning_symbols;    /* List warning syms */
  2944. int list_multiple_defs;        /* List multiple definitions */
  2945.  
  2946. /*
  2947.  * Structure for communication between do_file_warnings and it's
  2948.  * helper routines.  Will in practice be an array of three of these:
  2949.  * 0) Current line, 1) Next line, 2) Source file info.
  2950.  */
  2951. struct line_debug_entry
  2952. {
  2953.   int line;
  2954.   char *filename;
  2955.   struct nlist *sym;
  2956. };
  2957.  
  2958. void qsort ();
  2959. /*
  2960.  * Helper routines for do_file_warnings.
  2961.  */
  2962.  
  2963. /* Return an integer less than, equal to, or greater than 0 as per the
  2964.    relation between the two relocation entries.  Used by qsort.  */
  2965.  
  2966. int
  2967. relocation_entries_relation (rel1, rel2)
  2968.      struct relocation_info *rel1, *rel2;
  2969. {
  2970.   return RELOC_ADDRESS(rel1) - RELOC_ADDRESS(rel2);
  2971. }
  2972.  
  2973. /* Moves to the next debugging symbol in the file.  USE_DATA_SYMBOLS
  2974.    determines the type of the debugging symbol to look for (DSLINE or
  2975.    SLINE).  STATE_POINTER keeps track of the old and new locatiosn in
  2976.    the file.  It assumes that state_pointer[1] is valid; ie
  2977.    that it.sym points into some entry in the symbol table.  If
  2978.    state_pointer[1].sym == 0, this routine should not be called.  */
  2979.  
  2980. int
  2981. next_debug_entry (use_data_symbols, state_pointer)
  2982.      register int use_data_symbols;
  2983.      /* Next must be passed by reference! */
  2984.      struct line_debug_entry state_pointer[3];
  2985. {
  2986.   register struct line_debug_entry
  2987.     *current = state_pointer,
  2988.     *next = state_pointer + 1,
  2989.     /* Used to store source file */
  2990.     *source = state_pointer + 2;
  2991.   struct file_entry *entry = (struct file_entry *) source->sym;
  2992.  
  2993.   current->sym = next->sym;
  2994.   current->line = next->line;
  2995.   current->filename = next->filename;
  2996.  
  2997.   while (++(next->sym) < (entry->symbols
  2998.               + entry->header.a_syms/sizeof (struct nlist)))
  2999.     {
  3000.       /* n_type is a char, and N_SOL, N_EINCL and N_BINCL are > 0x80, so
  3001.        * may look negative...therefore, must mask to low bits
  3002.        */
  3003.       switch (next->sym->n_type & 0xff) 
  3004.     {
  3005.     case N_SLINE:
  3006.       if (use_data_symbols) continue;
  3007.       next->line = next->sym->n_desc;
  3008.       return 1;
  3009.     case N_DSLINE:
  3010.       if (!use_data_symbols) continue;
  3011.       next->line = next->sym->n_desc;
  3012.       return 1;
  3013. #ifdef HAVE_SUN_STABS
  3014.     case N_EINCL:
  3015.       next->filename = source->filename;
  3016.       continue;
  3017. #endif
  3018.     case N_SO:
  3019.       source->filename = next->sym->n_un.n_strx + entry->strings;
  3020.       source->line++;
  3021. #ifdef HAVE_SUN_STABS
  3022.     case N_BINCL:
  3023. #endif
  3024.     case N_SOL:
  3025.       next->filename
  3026.         = next->sym->n_un.n_strx + entry->strings;
  3027.     default:
  3028.       continue;
  3029.     }
  3030.     }
  3031.   next->sym = (struct nlist *) 0;
  3032.   return 0;
  3033. }
  3034.  
  3035. /* Create a structure to save the state of a scan through the debug
  3036.    symbols.  USE_DATA_SYMBOLS is set if we should be scanning for
  3037.    DSLINE's instead of SLINE's.  entry is the file entry which points
  3038.    at the symbols to use.  */
  3039.  
  3040. struct line_debug_entry *
  3041. init_debug_scan (use_data_symbols, entry)
  3042.      int use_data_symbols;
  3043.      struct file_entry *entry;
  3044. {
  3045.   struct line_debug_entry
  3046.     *state_pointer
  3047.       = (struct line_debug_entry *)
  3048.     xmalloc (3 * sizeof (struct line_debug_entry));
  3049.   register struct line_debug_entry
  3050.     *current = state_pointer,
  3051.     *next = state_pointer + 1,
  3052.     *source = state_pointer + 2; /* Used to store source file */
  3053.  
  3054.   struct nlist *tmp;
  3055.  
  3056.   for (tmp = entry->symbols;
  3057.        tmp < (entry->symbols
  3058.           + entry->header.a_syms/sizeof (struct nlist));
  3059.        tmp++)
  3060.     if (tmp->n_type == (int) N_SO)
  3061.       break;
  3062.  
  3063.   if (tmp >= (entry->symbols
  3064.           + entry->header.a_syms/sizeof (struct nlist)))
  3065.     {
  3066.       /* I believe this translates to "We lose" */
  3067.       current->filename = next->filename = entry->filename;
  3068.       current->line = next->line = -1;
  3069.       current->sym = next->sym = (struct nlist *) 0;
  3070.       return state_pointer;
  3071.     }
  3072.  
  3073.   next->line = source->line = 0;
  3074.   next->filename = source->filename
  3075.     = (tmp->n_un.n_strx + entry->strings);
  3076.   source->sym = (struct nlist *) entry;
  3077.   next->sym = tmp;
  3078.  
  3079.   next_debug_entry (use_data_symbols, state_pointer); /* To setup next */
  3080.  
  3081.   if (!next->sym)        /* No line numbers for this section; */
  3082.                 /* setup output results as appropriate */
  3083.     {
  3084.       if (source->line)
  3085.     {
  3086.       current->filename = source->filename = entry->filename;
  3087.       current->line = -1;    /* Don't print lineno */
  3088.     }
  3089.       else
  3090.     {
  3091.       current->filename = source->filename;
  3092.       current->line = 0;
  3093.     }
  3094.       return state_pointer;
  3095.     }
  3096.  
  3097.  
  3098.   next_debug_entry (use_data_symbols, state_pointer); /* To setup current */
  3099.  
  3100.   return state_pointer;
  3101. }
  3102.  
  3103. /* Takes an ADDRESS (in either text or data space) and a STATE_POINTER
  3104.    which describes the current location in the implied scan through
  3105.    the debug symbols within the file which ADDRESS is within, and
  3106.    returns the source line number which corresponds to ADDRESS.  */
  3107.   
  3108. int
  3109. address_to_line (address, state_pointer)
  3110.      unsigned long address;
  3111.      /* Next must be passed by reference! */
  3112.      struct line_debug_entry state_pointer[3];
  3113. {
  3114.   struct line_debug_entry
  3115.     *current = state_pointer,
  3116.     *next = state_pointer + 1;
  3117.   struct line_debug_entry *tmp_pointer;
  3118.  
  3119.   int use_data_symbols;
  3120.  
  3121.   if (next->sym)
  3122.     use_data_symbols = (next->sym->n_type & N_TYPE) == N_DATA;
  3123.   else
  3124.     return current->line;
  3125.  
  3126.   /* Go back to the beginning if we've already passed it.  */
  3127.   if (current->sym->n_value > address)
  3128.     {
  3129.       tmp_pointer = init_debug_scan (use_data_symbols,
  3130.                      (struct file_entry *)
  3131.                      ((state_pointer + 2)->sym));
  3132.       state_pointer[0] = tmp_pointer[0];
  3133.       state_pointer[1] = tmp_pointer[1];
  3134.       state_pointer[2] = tmp_pointer[2];
  3135.       free (tmp_pointer);
  3136.     }
  3137.  
  3138.   /* If we're still in a bad way, return -1, meaning invalid line.  */
  3139.   if (current->sym->n_value > address)
  3140.     return -1;
  3141.  
  3142.   while (next->sym
  3143.      && next->sym->n_value <= address
  3144.      && next_debug_entry (use_data_symbols, state_pointer))
  3145.     ;
  3146.   return current->line;
  3147. }
  3148.  
  3149.  
  3150. /* Macros for manipulating bitvectors.  */
  3151. #define    BIT_SET_P(bv, index)    ((bv)[(index) >> 3] & 1 << ((index) & 0x7))
  3152. #define    SET_BIT(bv, index)    ((bv)[(index) >> 3] |= 1 << ((index) & 0x7))
  3153.  
  3154. /* This routine will scan through the relocation data of file ENTRY,
  3155.    printing out references to undefined symbols and references to
  3156.    symbols defined in files with N_WARNING symbols.  If DATA_SEGMENT
  3157.    is non-zero, it will scan the data relocation segment (and use
  3158.    N_DSLINE symbols to track line number); otherwise it will scan the
  3159.    text relocation segment.  Warnings will be printed on the output
  3160.    stream OUTFILE.  Eventually, every nlist symbol mapped through will
  3161.    be marked in the NLIST_BITVECTOR, so we don't repeat ourselves when
  3162.    we scan the nlists themselves.  */
  3163.  
  3164. do_relocation_warnings (entry, data_segment, outfile, nlist_bitvector)
  3165.      struct file_entry *entry;
  3166.      int data_segment;
  3167.      FILE *outfile;
  3168.      unsigned char *nlist_bitvector;
  3169. {
  3170.   struct relocation_info
  3171.     *reloc_start = data_segment ? entry->datarel : entry->textrel,
  3172.     *reloc;
  3173.   int reloc_size
  3174.     = ((data_segment ? entry->header.a_drsize : entry->header.a_trsize)
  3175.        / sizeof (struct relocation_info));
  3176.   int start_of_segment
  3177.     = (data_segment ? entry->data_start_address : entry->text_start_address);
  3178.   struct nlist *start_of_syms = entry->symbols;
  3179.   struct line_debug_entry *state_pointer
  3180.     = init_debug_scan (data_segment != 0, entry);
  3181.   register struct line_debug_entry
  3182.     *current = state_pointer,
  3183.     *next = state_pointer + 1,
  3184.     *source = state_pointer + 2;
  3185.   /* Assigned to generally static values; should not be written into.  */
  3186.   char *errfmt;
  3187.   /* Assigned to alloca'd values cand copied into; should be freed
  3188.      when done.  */
  3189.   char *errmsg;
  3190.   int invalidate_line_number;
  3191.  
  3192.   /* We need to sort the relocation info here.  Sheesh, so much effort
  3193.      for one lousy error optimization. */
  3194.  
  3195.   qsort (reloc_start, reloc_size, sizeof (struct relocation_info),
  3196.      relocation_entries_relation);
  3197.  
  3198.   for (reloc = reloc_start;
  3199.        reloc < (reloc_start + reloc_size);
  3200.        reloc++)
  3201.     {
  3202.       register struct nlist *s;
  3203.       register symbol *g;
  3204.  
  3205.       /* If the relocation isn't resolved through a symbol, continue */
  3206.       if (!RELOC_EXTERN_P(reloc))
  3207.     continue;
  3208.  
  3209.       s = &(entry->symbols[RELOC_SYMBOL(reloc)]);
  3210.  
  3211.       /* Local symbols shouldn't ever be used by relocation info, so
  3212.      the next should be safe.
  3213.      This is, of course, wrong.  References to local BSS symbols can be
  3214.      the targets of relocation info, and they can (must) be
  3215.      resolved through symbols.  However, these must be defined properly,
  3216.      (the assembler would have caught it otherwise), so we can
  3217.      ignore these cases.  */
  3218.       if (!(s->n_type & N_EXT))
  3219.     continue;
  3220.  
  3221.       g = (symbol *) s->n_un.n_name;
  3222.       errmsg = 0;
  3223.  
  3224.       if (!g->defined && list_unresolved_refs) /* Reference */
  3225.     {
  3226.       /* Mark as being noted by relocation warning pass.  */
  3227.       SET_BIT (nlist_bitvector, s - start_of_syms);
  3228.       
  3229.       if (g->undef_refs >= MAX_UREFS_PRINTED)    /* Listed too many */
  3230.         continue;
  3231.  
  3232.       /* Undefined symbol which we should mention */
  3233.  
  3234.       if (++(g->undef_refs) == MAX_UREFS_PRINTED)
  3235.         {
  3236.           errfmt = "More undefined symbol %s refs follow";
  3237.           invalidate_line_number = 1;
  3238.         }
  3239.       else
  3240.         {
  3241.           errfmt = "Undefined symbol %s referenced from %s segment";
  3242.           invalidate_line_number = 0;
  3243.         }
  3244.     }
  3245.       else                         /* Defined */
  3246.     {
  3247.       /* Potential symbol warning here */
  3248.       if (!g->warning) continue;
  3249.  
  3250.       /* Mark as being noted by relocation warning pass.  */
  3251.       SET_BIT (nlist_bitvector, s - start_of_syms);
  3252.       
  3253.       errfmt = 0;
  3254.       errmsg = g->warning;
  3255.       invalidate_line_number = 0;
  3256.     }
  3257.       
  3258.  
  3259.       /* If errfmt == 0, errmsg has already been defined.  */
  3260.       if (errfmt != 0)
  3261.     {
  3262.       errmsg = (char *) xmalloc (strlen (errfmt) + strlen (g->name) + 1);
  3263.       sprintf (errmsg, errfmt, g->name, data_segment ? "data" : "text");
  3264.     }
  3265.  
  3266.       address_to_line (RELOC_ADDRESS (reloc) + start_of_segment,
  3267.                state_pointer);
  3268.  
  3269.       if (current->line >=0)
  3270.     fprintf (outfile, "%s:%d: %s\n", current->filename,
  3271.          invalidate_line_number ? 0 : current->line, errmsg);
  3272.       else
  3273.     fprintf (outfile, "%s: %s\n", current->filename, errmsg);
  3274.  
  3275.       if (errfmt != 0)
  3276.     free (errmsg);
  3277.     }
  3278.  
  3279.   free (state_pointer);
  3280. }
  3281.  
  3282. /* Print on OUTFILE a list of all warnings generated by references
  3283.    and/or definitions in the file ENTRY.  List source file and line
  3284.    number if possible, just the .o file if not. */
  3285.  
  3286. void
  3287. do_file_warnings (entry, outfile)
  3288.      struct file_entry *entry;
  3289.      FILE *outfile;
  3290. {
  3291.   int number_of_syms = entry->header.a_syms / sizeof (struct nlist);
  3292.   unsigned char *nlist_bitvector
  3293.     = (unsigned char *) alloca ((number_of_syms >> 3) + 1);
  3294.   struct line_debug_entry *text_scan, *data_scan;
  3295.   int i;
  3296.   char *errfmt, *file_name;
  3297.   int line_number;
  3298.   int dont_allow_symbol_name;
  3299.  
  3300.   bzero (nlist_bitvector, (number_of_syms >> 3) + 1);
  3301.  
  3302.   /* Read in the files strings if they aren't available */
  3303.   if (!entry->strings)
  3304.     {
  3305.       int desc;
  3306.  
  3307.       entry->strings = (char *) alloca (entry->string_size);
  3308.       desc = file_open (entry);
  3309.       read_entry_strings (desc, entry);
  3310.     }
  3311.  
  3312.   read_file_relocation (entry);
  3313.  
  3314.   /* Do text warnings based on a scan through the relocation info.  */
  3315.   do_relocation_warnings (entry, 0, outfile, nlist_bitvector);
  3316.  
  3317.   /* Do data warnings based on a scan through the relocation info.  */
  3318.   do_relocation_warnings (entry, 1, outfile, nlist_bitvector);
  3319.  
  3320.   /* Scan through all of the nlist entries in this file and pick up
  3321.      anything that the scan through the relocation stuff didn't.  */
  3322.  
  3323.   text_scan = init_debug_scan (0, entry);
  3324.   data_scan = init_debug_scan (1, entry);
  3325.  
  3326.   for (i = 0; i < number_of_syms; i++)
  3327.     {
  3328.       struct nlist *s;
  3329.       struct glosym *g;
  3330.  
  3331.       s = entry->symbols + i;
  3332.  
  3333.       if (!(s->n_type & N_EXT))
  3334.     continue;
  3335.  
  3336.       g = (symbol *) s->n_un.n_name;
  3337.       dont_allow_symbol_name = 0;
  3338.  
  3339.       if (list_multiple_defs && g->multiply_defined)
  3340.     {
  3341.       errfmt = "Definition of symbol %s (multiply defined)";
  3342.       switch (s->n_type)
  3343.         {
  3344.         case N_TEXT | N_EXT:
  3345.           line_number = address_to_line (s->n_value, text_scan);
  3346.           file_name = text_scan[0].filename;
  3347.           break;
  3348.         case N_DATA | N_EXT:
  3349.           line_number = address_to_line (s->n_value, data_scan);
  3350.           file_name = data_scan[0].filename;
  3351.           break;
  3352.         case N_SETA | N_EXT:
  3353.         case N_SETT | N_EXT:
  3354.         case N_SETD | N_EXT:
  3355.         case N_SETB | N_EXT:
  3356.           if (g->multiply_defined == 2)
  3357.         continue;
  3358.           errfmt = "First set element definition of symbol %s (multiply defined)";
  3359.           break;
  3360.         default:
  3361.           continue;        /* Don't print out multiple defs
  3362.                    at references.  */
  3363.         }
  3364.     }
  3365.       else if (BIT_SET_P (nlist_bitvector, i))
  3366.     continue;
  3367.       else if (list_unresolved_refs && !g->defined)
  3368.     {
  3369.       if (g->undef_refs >= MAX_UREFS_PRINTED)
  3370.         continue;
  3371.       
  3372.       if (++(g->undef_refs) == MAX_UREFS_PRINTED)
  3373.         errfmt = "More undefined \"%s\" refs follow";
  3374.       else
  3375.         errfmt = "Undefined symbol \"%s\" referenced";
  3376.       line_number = -1;
  3377.     }
  3378.       else if (g->warning)
  3379.     {
  3380.       /* There are two cases in which we don't want to
  3381.          do this.  The first is if this is a definition instead of
  3382.          a reference.  The second is if it's the reference used by
  3383.          the warning stabs itself.  */
  3384.       if (s->n_type != (N_EXT | N_UNDF)
  3385.           || (i && (s-1)->n_type == N_WARNING))
  3386.         continue;
  3387.  
  3388.       errfmt = g->warning;
  3389.       line_number = -1;
  3390.       dont_allow_symbol_name = 1;
  3391.     }
  3392.       else
  3393.     continue;
  3394.       
  3395.       if (line_number == -1)
  3396.     fprintf (outfile, "%s: ", entry->filename);
  3397.       else
  3398.     fprintf (outfile, "%s:%d: ", file_name, line_number);
  3399.  
  3400.       if (dont_allow_symbol_name)
  3401.     fprintf (outfile, "%s", errfmt);
  3402.       else
  3403.     fprintf (outfile, errfmt, g->name);
  3404.  
  3405.       fputc ('\n', outfile);
  3406.     }
  3407.   free (text_scan);
  3408.   free (data_scan);
  3409.   entry->strings = 0;        /* Since it will dissapear anyway.  */
  3410. }
  3411.  
  3412. do_warnings (outfile)
  3413.      FILE *outfile;
  3414. {
  3415.   int i;
  3416.  
  3417.   list_unresolved_refs = !relocatable_output && undefined_global_sym_count;
  3418.   list_warning_symbols = warning_count;
  3419.   list_multiple_defs = multiple_def_count != 0;
  3420.  
  3421.   if (!(list_unresolved_refs ||
  3422.     list_warning_symbols ||
  3423.     list_multiple_defs      ))
  3424.     /* No need to run this routine */
  3425.     return;
  3426.  
  3427.   each_file (do_file_warnings, outfile);
  3428.  
  3429.   if (list_unresolved_refs || list_multiple_defs)
  3430.     make_executable = 0;
  3431. }
  3432.  
  3433. /* Write the output file */
  3434.  
  3435. void
  3436. write_output ()
  3437. {
  3438.   struct stat statbuf;
  3439.   int filemode;
  3440.  
  3441.   outdesc = open (output_filename, O_WRONLY | O_CREAT | O_TRUNC, 0666);
  3442.   if (outdesc < 0) perror_name (output_filename);
  3443.  
  3444.   if (fstat (outdesc, &statbuf) < 0)
  3445.     perror_name (output_filename);
  3446.  
  3447.   filemode = statbuf.st_mode;
  3448.  
  3449.   chmod (output_filename, filemode & ~0111);
  3450.  
  3451.   /* Output the a.out header.  */
  3452.   write_header ();
  3453.  
  3454.   /* Output the text and data segments, relocating as we go.  */
  3455.   write_text ();
  3456.   write_data ();
  3457.  
  3458.   /* Output the merged relocation info, if requested with `-r'.  */
  3459.   if (relocatable_output)
  3460.     write_rel ();
  3461.  
  3462.   /* Output the symbol table (both globals and locals).  */
  3463.   write_syms ();
  3464.  
  3465.   /* Copy any GDB symbol segments from input files.  */
  3466.   write_symsegs ();
  3467.  
  3468.   close (outdesc);
  3469.  
  3470.   if (chmod (output_filename, filemode | 0111) == -1)
  3471.     perror_name (output_filename);
  3472. }
  3473.  
  3474. void modify_location (), perform_relocation (), copy_text (), copy_data ();
  3475.  
  3476. void
  3477. write_header ()
  3478. {
  3479.   N_SET_MAGIC (outheader, magic);
  3480.   outheader.a_text = text_size;
  3481. #if TARGET_MACHINE==TARGET_SEQUENT
  3482.   outheader.a_text += N_ADDRADJ (outheader);
  3483. #endif
  3484.   outheader.a_data = data_size;
  3485.   outheader.a_bss = bss_size;
  3486.   outheader.a_entry = (entry_symbol ? entry_symbol->value
  3487.                : text_start + entry_offset);
  3488. #ifdef COFF_ENCAPSULATE
  3489.   if (need_coff_header)
  3490.     {
  3491.       /* We are encapsulating BSD format within COFF format.  */
  3492.       struct coffscn *tp, *dp, *bp;
  3493.  
  3494.       tp = &coffheader.scns[0];
  3495.       dp = &coffheader.scns[1];
  3496.       bp = &coffheader.scns[2];
  3497.  
  3498.       strcpy (tp->s_name, ".text");
  3499.       tp->s_paddr = text_start;
  3500.       tp->s_vaddr = text_start;
  3501.       tp->s_size = text_size;
  3502.       tp->s_scnptr = sizeof (struct coffheader) + sizeof (struct exec);
  3503.       tp->s_relptr = 0;
  3504.       tp->s_lnnoptr = 0;
  3505.       tp->s_nreloc = 0;
  3506.       tp->s_nlnno = 0;
  3507.       tp->s_flags = 0x20;
  3508.       strcpy (dp->s_name, ".data");
  3509.       dp->s_paddr = data_start;
  3510.       dp->s_vaddr = data_start;
  3511.       dp->s_size = data_size;
  3512.       dp->s_scnptr = tp->s_scnptr + tp->s_size;
  3513.       dp->s_relptr = 0;
  3514.       dp->s_lnnoptr = 0;
  3515.       dp->s_nreloc = 0;
  3516.       dp->s_nlnno = 0;
  3517.       dp->s_flags = 0x40;
  3518.       strcpy (bp->s_name, ".bss");
  3519.       bp->s_paddr = dp->s_vaddr + dp->s_size;
  3520.       bp->s_vaddr = bp->s_paddr;
  3521.       bp->s_size = bss_size;
  3522.       bp->s_scnptr = 0;
  3523.       bp->s_relptr = 0;
  3524.       bp->s_lnnoptr = 0;
  3525.       bp->s_nreloc = 0;
  3526.       bp->s_nlnno = 0;
  3527.       bp->s_flags = 0x80;
  3528.  
  3529.       coffheader.f_magic = COFF_MAGIC;
  3530.       coffheader.f_nscns = 3;
  3531.       /* store an unlikely time so programs can
  3532.        * tell that there is a bsd header
  3533.        */
  3534.       coffheader.f_timdat = 1;
  3535.       coffheader.f_symptr = 0;
  3536.       coffheader.f_nsyms = 0;
  3537.       coffheader.f_opthdr = 28;
  3538.       coffheader.f_flags = 0x103;
  3539.       /* aouthdr */
  3540.       coffheader.magic = ZMAGIC;
  3541.       coffheader.vstamp = 0;
  3542.       coffheader.tsize = tp->s_size;
  3543.       coffheader.dsize = dp->s_size;
  3544.       coffheader.bsize = bp->s_size;
  3545.       coffheader.entry = outheader.a_entry;
  3546.       coffheader.text_start = tp->s_vaddr;
  3547.       coffheader.data_start = dp->s_vaddr;
  3548.     }
  3549. #endif
  3550.  
  3551. #ifdef INITIALIZE_HEADER
  3552.   INITIALIZE_HEADER;
  3553. #endif
  3554.  
  3555.   if (strip_symbols == STRIP_ALL)
  3556.     nsyms = 0;
  3557.   else
  3558.     {
  3559.       nsyms = (defined_global_sym_count
  3560.            + undefined_global_sym_count);
  3561.       if (discard_locals == DISCARD_L)
  3562.     nsyms += non_L_local_sym_count;
  3563.       else if (discard_locals == DISCARD_NONE)
  3564.     nsyms += local_sym_count;
  3565.       /* One extra for following reference on indirects */
  3566.       if (relocatable_output)
  3567.     nsyms += set_symbol_count + global_indirect_count;
  3568.     }
  3569.  
  3570.   if (strip_symbols == STRIP_NONE)
  3571.     nsyms += debugger_sym_count;
  3572.  
  3573.   outheader.a_syms = nsyms * sizeof (struct nlist);
  3574.  
  3575.   if (relocatable_output)
  3576.     {
  3577.       outheader.a_trsize = text_reloc_size;
  3578.       outheader.a_drsize = data_reloc_size;
  3579.     }
  3580.   else
  3581.     {
  3582.       outheader.a_trsize = 0;
  3583.       outheader.a_drsize = 0;
  3584.     }
  3585.  
  3586. #ifdef COFF_ENCAPSULATE
  3587.   if (need_coff_header)
  3588.     mywrite (&coffheader, sizeof coffheader, 1, outdesc);
  3589. #endif
  3590. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3591.   fix_exec_header_byte_order(&outheader);
  3592. #endif
  3593.   mywrite (&outheader, sizeof (struct exec), 1, outdesc);
  3594. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3595.   fix_exec_header_byte_order(&outheader);
  3596. #endif
  3597.  
  3598.   /* Output whatever padding is required in the executable file
  3599.      between the header and the start of the text.  */
  3600.  
  3601. #ifndef COFF_ENCAPSULATE
  3602.   padfile (N_TXTOFF (outheader) - sizeof outheader, outdesc);
  3603. #endif
  3604. }
  3605.  
  3606. /* Relocate the text segment of each input file
  3607.    and write to the output file.  */
  3608.  
  3609. void
  3610. write_text ()
  3611. {
  3612.   if (trace_files)
  3613.     fprintf (stderr, "Copying and relocating text:\n\n");
  3614.  
  3615.   each_full_file (copy_text);
  3616.   file_close ();
  3617.  
  3618.   if (trace_files)
  3619.     fprintf (stderr, "\n");
  3620.  
  3621.   padfile (text_pad, outdesc);
  3622. }
  3623.  
  3624. int
  3625. text_offset (entry)
  3626.      struct file_entry *entry;
  3627. {
  3628.   return entry->starting_offset + N_TXTOFF (entry->header);
  3629. }
  3630.  
  3631. /* Read in all of the relocation information */
  3632.  
  3633. void
  3634. read_relocation ()
  3635. {
  3636.   each_full_file (read_file_relocation);
  3637. }
  3638.  
  3639. /* Read in the relocation sections of ENTRY if necessary */
  3640.  
  3641. void
  3642. read_file_relocation (entry)
  3643.      struct file_entry *entry;
  3644. {
  3645.   register struct relocation_info *reloc;
  3646.   int desc;
  3647.   int read_return;
  3648.  
  3649.   desc = -1;
  3650.   if (!entry->textrel)
  3651.     {
  3652.       reloc = (struct relocation_info *) xmalloc (entry->header.a_trsize);
  3653.       desc = file_open (entry);
  3654.       lseek (desc,
  3655.          text_offset (entry) + entry->header.a_text + entry->header.a_data,
  3656.          L_SET);
  3657.       if (entry->header.a_trsize != (read_return = read (desc, reloc, entry->header.a_trsize)))
  3658.     {
  3659.       fprintf (stderr, "Return from read: %d\n", read_return);
  3660.       fatal_with_file ("premature eof in text relocation of ", entry);
  3661.     }
  3662. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3663.       target_to_host_reloc_byte_order(reloc,
  3664.     entry->header.a_trsize/sizeof(*reloc));
  3665. #endif
  3666.       entry->textrel = reloc;
  3667.     }
  3668.  
  3669.   if (!entry->datarel)
  3670.     {
  3671.       reloc = (struct relocation_info *) xmalloc (entry->header.a_drsize);
  3672.       if (desc == -1) desc = file_open (entry);
  3673.       lseek (desc,
  3674.          text_offset (entry) + entry->header.a_text
  3675.          + entry->header.a_data + entry->header.a_trsize,
  3676.          L_SET);
  3677.       if (entry->header.a_drsize != read (desc, reloc, entry->header.a_drsize))
  3678.     fatal_with_file ("premature eof in data relocation of ", entry);
  3679. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3680.       target_to_host_reloc_byte_order(reloc,
  3681.     entry->header.a_drsize/sizeof(*reloc));
  3682. #endif
  3683.       entry->datarel = reloc;
  3684.     }
  3685. }
  3686.  
  3687. /* Read the text segment contents of ENTRY, relocate them,
  3688.    and write the result to the output file.
  3689.    If `-r', save the text relocation for later reuse.  */
  3690.  
  3691. void
  3692. copy_text (entry)
  3693.      struct file_entry *entry;
  3694. {
  3695.   register char *bytes;
  3696.   register int desc;
  3697.   register struct relocation_info *reloc;
  3698.  
  3699.   if (trace_files)
  3700.     prline_file_name (entry, stderr);
  3701.  
  3702.   desc = file_open (entry);
  3703.  
  3704.   /* Allocate space for the file's text section */
  3705.  
  3706.   bytes = (char *) alloca (entry->header.a_text);
  3707.  
  3708.   /* Deal with relocation information however is appropriate */
  3709.  
  3710.   if (entry->textrel)  reloc = entry->textrel;
  3711.   else if (relocatable_output)
  3712.     {
  3713.       read_file_relocation (entry);
  3714.       reloc = entry->textrel;
  3715.     }
  3716.   else
  3717.     {
  3718.       reloc = (struct relocation_info *) alloca (entry->header.a_trsize);
  3719.       lseek (desc, text_offset (entry) + entry->header.a_text + entry->header.a_data, 0);
  3720.       if (entry->header.a_trsize != read (desc, reloc, entry->header.a_trsize))
  3721.     fatal_with_file ("premature eof in text relocation of ", entry);
  3722. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3723.       target_to_host_reloc_byte_order(reloc,
  3724.       entry->header.a_trsize/sizeof(*reloc));
  3725. #endif
  3726.     }
  3727.  
  3728.   /* Read the text section into core.  */
  3729.  
  3730.   lseek (desc, text_offset (entry), 0);
  3731.   if (entry->header.a_text != read (desc, bytes, entry->header.a_text))
  3732.     fatal_with_file ("premature eof in text section of ", entry);
  3733.  
  3734.  
  3735.   /* Relocate the text according to the text relocation.  */
  3736.  
  3737.   perform_relocation (bytes, entry->text_start_address, entry->header.a_text,
  3738.               reloc, entry->header.a_trsize, entry);
  3739.  
  3740.   /* Write the relocated text to the output file.  */
  3741.  
  3742.   mywrite (bytes, 1, entry->header.a_text, outdesc);
  3743. }
  3744.  
  3745. /* Relocate the data segment of each input file
  3746.    and write to the output file.  */
  3747.  
  3748. void
  3749. write_data ()
  3750. {
  3751.   if (trace_files)
  3752.     fprintf (stderr, "Copying and relocating data:\n\n");
  3753.  
  3754.   each_full_file (copy_data);
  3755.   file_close ();
  3756.  
  3757.   /* Write out the set element vectors.  See digest symbols for
  3758.      description of length of the set vector section.  */
  3759.  
  3760. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3761.   {
  3762.     int i;
  3763.     for (i = 0; i < 2 * set_symbol_count + set_vector_count; ++i) {
  3764.     fix_byte_order(&set_vectors[i], sizeof(*set_vectors));
  3765.     }
  3766.   }
  3767. #endif
  3768.  
  3769.   if (set_vector_count)
  3770.     mywrite (set_vectors, 2 * set_symbol_count + set_vector_count,
  3771.          sizeof (unsigned long), outdesc);
  3772.  
  3773.   if (trace_files)
  3774.     fprintf (stderr, "\n");
  3775.  
  3776.   padfile (data_pad, outdesc);
  3777. }
  3778.  
  3779. /* Read the data segment contents of ENTRY, relocate them,
  3780.    and write the result to the output file.
  3781.    If `-r', save the data relocation for later reuse.
  3782.    See comments in `copy_text'.  */
  3783.  
  3784. void
  3785. copy_data (entry)
  3786.      struct file_entry *entry;
  3787. {
  3788.   register struct relocation_info *reloc;
  3789.   register char *bytes;
  3790.   register int desc;
  3791.  
  3792.   if (trace_files)
  3793.     prline_file_name (entry, stderr);
  3794.  
  3795.   desc = file_open (entry);
  3796.  
  3797.   bytes = (char *) alloca (entry->header.a_data);
  3798.  
  3799.   if (entry->datarel) reloc = entry->datarel;
  3800.   else if (relocatable_output)    /* Will need this again */
  3801.     {
  3802.       read_file_relocation (entry);
  3803.       reloc = entry->datarel;
  3804.     }
  3805.   else
  3806.     {
  3807.       reloc = (struct relocation_info *) alloca (entry->header.a_drsize);
  3808.       lseek (desc, text_offset (entry) + entry->header.a_text
  3809.          + entry->header.a_data + entry->header.a_trsize,
  3810.          0);
  3811.       if (entry->header.a_drsize != read (desc, reloc, entry->header.a_drsize))
  3812.     fatal_with_file ("premature eof in data relocation of ", entry);
  3813. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3814.       target_to_host_reloc_byte_order(reloc,
  3815.       entry->header.a_drsize/sizeof(*reloc));
  3816. #endif
  3817.     }
  3818.  
  3819.   lseek (desc, text_offset (entry) + entry->header.a_text, 0);
  3820.   if (entry->header.a_data != read (desc, bytes, entry->header.a_data))
  3821.     fatal_with_file ("premature eof in data section of ", entry);
  3822.  
  3823.   perform_relocation (bytes, entry->data_start_address - entry->header.a_text,
  3824.               entry->header.a_data, reloc, entry->header.a_drsize, entry);
  3825.  
  3826.   mywrite (bytes, 1, entry->header.a_data, outdesc);
  3827. }
  3828.  
  3829. /* Relocate ENTRY's text or data section contents.
  3830.    DATA is the address of the contents, in core.
  3831.    DATA_SIZE is the length of the contents.
  3832.    PC_RELOCATION is the difference between the address of the contents
  3833.      in the output file and its address in the input file.
  3834.    RELOC_INFO is the address of the relocation info, in core.
  3835.    RELOC_SIZE is its length in bytes.  */
  3836. /* This version is about to be severley hacked by Randy.  Hope it
  3837.    works afterwards. */
  3838. void
  3839. perform_relocation (data, pc_relocation, data_size, reloc_info, reloc_size, entry)
  3840.      char *data;
  3841.      struct relocation_info *reloc_info;
  3842.      struct file_entry *entry;
  3843.      int pc_relocation;
  3844.      int data_size;
  3845.      int reloc_size;
  3846. {
  3847.   register struct relocation_info *p = reloc_info;
  3848.   struct relocation_info *end
  3849.     = reloc_info + reloc_size / sizeof (struct relocation_info);
  3850.   int text_relocation = entry->text_start_address;
  3851.   int data_relocation = entry->data_start_address - entry->header.a_text;
  3852.   int bss_relocation
  3853.     = entry->bss_start_address - entry->header.a_text - entry->header.a_data;
  3854.  
  3855.   for (; p < end; p++)
  3856.     {
  3857.       register int relocation = 0;
  3858.       register int addr = RELOC_ADDRESS(p);
  3859.       register unsigned int mask = 0;
  3860.       register unsigned int x;
  3861.  
  3862.       if (addr >= data_size)
  3863.     fatal_with_file ("relocation address out of range in ", entry);
  3864.  
  3865.       if (RELOC_EXTERN_P(p))
  3866.     {
  3867.       int symindex = RELOC_SYMBOL (p) * sizeof (struct nlist);
  3868.       symbol *sp = ((symbol *)
  3869.             (((struct nlist *)
  3870.               (((char *)entry->symbols) + symindex))
  3871.              ->n_un.n_name));
  3872.  
  3873. #ifdef N_INDR
  3874.       /* Resolve indirection */
  3875.       if ((sp->defined & ~N_EXT) == N_INDR)
  3876.         sp = (symbol *) sp->value;
  3877. #endif
  3878.  
  3879.       if (symindex >= entry->header.a_syms)
  3880.         fatal_with_file ("relocation symbolnum out of range in ", entry);
  3881.  
  3882.       /* If the symbol is undefined, leave it at zero.  */
  3883.       if (! sp->defined)
  3884.         relocation = 0;
  3885.       else
  3886.         relocation = sp->value;
  3887.     }
  3888.       else switch (RELOC_TYPE(p))
  3889.     {
  3890.     case N_TEXT:
  3891.     case N_TEXT | N_EXT:
  3892.       relocation = text_relocation;
  3893.       break;
  3894.  
  3895.     case N_DATA:
  3896.     case N_DATA | N_EXT:
  3897.       /* A word that points to beginning of the the data section
  3898.          initially contains not 0 but rather the "address" of that section
  3899.          in the input file, which is the length of the file's text.  */
  3900.       relocation = data_relocation;
  3901.       break;
  3902.  
  3903.     case N_BSS:
  3904.     case N_BSS | N_EXT:
  3905.       /* Similarly, an input word pointing to the beginning of the bss
  3906.          initially contains the length of text plus data of the file.  */
  3907.       relocation = bss_relocation;
  3908.       break;
  3909.  
  3910.     case N_ABS:
  3911.     case N_ABS | N_EXT:
  3912.       /* Don't know why this code would occur, but apparently it does.  */
  3913.       break;
  3914.  
  3915.     default:
  3916.       fatal_with_file ("nonexternal relocation code invalid in ", entry);
  3917.     }
  3918.  
  3919.       if (RELOC_PCREL_P(p))
  3920.     relocation -= pc_relocation;
  3921.  
  3922. #ifdef RELOC_ADD_EXTRA
  3923.       relocation += RELOC_ADD_EXTRA(p);
  3924.       if (relocatable_output)
  3925.     {
  3926.       /* If this RELOC_ADD_EXTRA is 0, it means that the
  3927.          symbol was external and the relocation does not
  3928.          need a fixup here.  */
  3929.       if (RELOC_ADD_EXTRA (p))
  3930.         {
  3931.           if (! RELOC_PCREL_P (p))
  3932.         RELOC_ADD_EXTRA (p) = relocation;
  3933.           else
  3934.         RELOC_ADD_EXTRA (p) -= pc_relocation;
  3935.         }
  3936. #if 0
  3937.       if (! RELOC_PCREL_P (p))
  3938.         {
  3939.           if ((int)p->r_type <= RELOC_32
  3940.           || RELOC_EXTERN_P (p) == 0)
  3941.         RELOC_ADD_EXTRA (p) = relocation;
  3942.         }
  3943.       else if (RELOC_EXTERN_P (p))
  3944.         RELOC_ADD_EXTRA (p) -= pc_relocation;
  3945. #endif
  3946.       continue;
  3947.     }
  3948. #endif
  3949.  
  3950.       relocation >>= RELOC_VALUE_RIGHTSHIFT(p);
  3951.  
  3952.       /* Unshifted mask for relocation */
  3953.       mask = 1 << RELOC_TARGET_BITSIZE(p) - 1;
  3954.       mask |= mask - 1;
  3955.       relocation &= mask;
  3956.  
  3957.       /* Shift everything up to where it's going to be used */
  3958.       relocation <<= RELOC_TARGET_BITPOS(p);
  3959.       mask <<= RELOC_TARGET_BITPOS(p);
  3960.  
  3961.       switch (RELOC_TARGET_SIZE(p))
  3962.     {
  3963.     case 0:
  3964.       if (RELOC_MEMORY_SUB_P(p))
  3965.         relocation -= mask & *(char *) (data + addr);
  3966.       else if (RELOC_MEMORY_ADD_P(p))
  3967.         relocation += mask & *(char *) (data + addr);
  3968.       *(char *) (data + addr) &= ~mask;
  3969.       *(char *) (data + addr) |= relocation;
  3970.       break;
  3971.  
  3972.     case 1:
  3973. #if TARGET_BYTE_ORDER==BIG_ENDIAN
  3974.       x = ((unsigned char *) (data + addr))[1]
  3975.        | (((unsigned char *) (data + addr))[0] << 8);
  3976. #endif
  3977. #if TARGET_BYTE_ORDER==LITTLE_ENDIAN
  3978.       x = ((unsigned char *) (data + addr))[0]
  3979.        | (((unsigned char *) (data + addr))[1] << 8);
  3980. #endif
  3981.       if (RELOC_MEMORY_SUB_P(p))
  3982.         relocation -= mask & x;
  3983.       else if (RELOC_MEMORY_ADD_P(p))
  3984.         relocation += mask & x;
  3985.       x &= ~mask;
  3986.       x |= relocation;
  3987. #if TARGET_BYTE_ORDER==BIG_ENDIAN
  3988.       ((unsigned char *) (data + addr))[1] = x;
  3989.       ((unsigned char *) (data + addr))[0] = x >> 8;
  3990. #endif
  3991. #if TARGET_BYTE_ORDER==LITTLE_ENDIAN
  3992.       ((unsigned char *) (data + addr))[0] = x;
  3993.       ((unsigned char *) (data + addr))[1] = x >> 8;
  3994. #endif
  3995.       break;
  3996.  
  3997.     case 2:
  3998. #if TARGET_BYTE_ORDER==BIG_ENDIAN
  3999.       x = ((unsigned char *) (data + addr))[3]
  4000.        | (((unsigned char *) (data + addr))[2] << 8)
  4001.        | (((unsigned char *) (data + addr))[1] << 16)
  4002.        | (((unsigned char *) (data + addr))[0] << 24);
  4003. #endif
  4004. #if TARGET_BYTE_ORDER==LITTLE_ENDIAN
  4005.       x = ((unsigned char *) (data + addr))[0]
  4006.        | (((unsigned char *) (data + addr))[1] << 8)
  4007.        | (((unsigned char *) (data + addr))[2] << 16)
  4008.        | (((unsigned char *) (data + addr))[3] << 24);
  4009. #endif
  4010.           if (RELOC_MEMORY_SUB_P(p))
  4011.         relocation -= mask & x;
  4012.       else if (RELOC_MEMORY_ADD_P(p))
  4013.         relocation += mask & x;
  4014.       x &= ~mask;
  4015.       x |= relocation;
  4016. #if TARGET_BYTE_ORDER==BIG_ENDIAN
  4017.       ((unsigned char *) (data + addr))[3] = x;
  4018.       ((unsigned char *) (data + addr))[2] = x >> 8;
  4019.       ((unsigned char *) (data + addr))[1] = x >> 16;
  4020.       ((unsigned char *) (data + addr))[0] = x >> 24;
  4021. #endif
  4022. #if TARGET_BYTE_ORDER==LITTLE_ENDIAN
  4023.       ((unsigned char *) (data + addr))[0] = x;
  4024.       ((unsigned char *) (data + addr))[1] = x >> 8;
  4025.       ((unsigned char *) (data + addr))[2] = x >> 16;
  4026.       ((unsigned char *) (data + addr))[3] = x >> 24;
  4027. #endif
  4028.       break;
  4029.  
  4030.     default:
  4031.       fatal_with_file ("Unimplemented relocation field length in ", entry);
  4032.     }
  4033.     }
  4034. }
  4035.  
  4036. /* For relocatable_output only: write out the relocation,
  4037.    relocating the addresses-to-be-relocated.  */
  4038.  
  4039. void coptxtrel (), copdatrel ();
  4040.  
  4041. void
  4042. write_rel ()
  4043. {
  4044.   register int i;
  4045.   register int count = 0;
  4046.  
  4047.   if (trace_files)
  4048.     fprintf (stderr, "Writing text relocation:\n\n");
  4049.  
  4050.   /* Assign each global symbol a sequence number, giving the order
  4051.      in which `write_syms' will write it.
  4052.      This is so we can store the proper symbolnum fields
  4053.      in relocation entries we write.  */
  4054.  
  4055.   for (i = 0; i < TABSIZE; i++)
  4056.     {
  4057.       symbol *sp;
  4058.       for (sp = symtab[i]; sp; sp = sp->link)
  4059.     if (sp->referenced || sp->defined)
  4060.       {
  4061.         sp->def_count = count++;
  4062.         /* Leave room for the reference required by N_INDR, if
  4063.            necessary.  */
  4064.         if ((sp->defined & ~N_EXT) == N_INDR)
  4065.           count++;
  4066.       }
  4067.     }
  4068.   /* Correct, because if (reloatable_output), we will also be writing
  4069.      whatever indirect blocks we have.  */
  4070.   if (count != defined_global_sym_count
  4071.       + undefined_global_sym_count + global_indirect_count)
  4072.     fatal ("internal error");
  4073.  
  4074.   /* Write out the relocations of all files, remembered from copy_text.  */
  4075.  
  4076.   each_full_file (coptxtrel);
  4077.  
  4078.   if (trace_files)
  4079.     fprintf (stderr, "\nWriting data relocation:\n\n");
  4080.  
  4081.   each_full_file (copdatrel);
  4082.  
  4083.   if (trace_files)
  4084.     fprintf (stderr, "\n");
  4085. }
  4086.  
  4087. void
  4088. coptxtrel (entry)
  4089.      struct file_entry *entry;
  4090. {
  4091.   register struct relocation_info *p, *end;
  4092.   register int reloc = entry->text_start_address;
  4093.  
  4094.   p = entry->textrel;
  4095.   end = (struct relocation_info *) (entry->header.a_trsize + (char *) p);
  4096.   while (p < end)
  4097.     {
  4098.       RELOC_ADDRESS(p) += reloc;
  4099.       if (RELOC_EXTERN_P(p))
  4100.     {
  4101.       register int symindex = RELOC_SYMBOL(p) * sizeof (struct nlist);
  4102.       symbol *symptr = ((symbol *)
  4103.                 (((struct nlist *)
  4104.                   (((char *)entry->symbols) + symindex))
  4105.                  ->n_un.n_name));
  4106.  
  4107.       if (symindex >= entry->header.a_syms)
  4108.         fatal_with_file ("relocation symbolnum out of range in ", entry);
  4109.  
  4110. #ifdef N_INDR
  4111.       /* Resolve indirection.  */
  4112.       if ((symptr->defined & ~N_EXT) == N_INDR)
  4113.         symptr = (symbol *) symptr->value;
  4114. #endif
  4115.  
  4116.       /* If the symbol is now defined, change the external relocation
  4117.          to an internal one.  */
  4118.  
  4119.       if (symptr->defined)
  4120.         {
  4121.           RELOC_EXTERN_P(p) = 0;
  4122.           RELOC_SYMBOL(p) = (symptr->defined & N_TYPE);
  4123. #ifdef RELOC_ADD_EXTRA
  4124.           /* If we aren't going to be adding in the value in
  4125.              memory on the next pass of the loader, then we need
  4126.          to add it in from the relocation entry.  Otherwise
  4127.              the work we did in this pass is lost.  */
  4128.           if (!RELOC_MEMORY_ADD_P(p))
  4129.         RELOC_ADD_EXTRA (p) += symptr->value;
  4130. #endif
  4131.         }
  4132.       else
  4133.         /* Debugger symbols come first, so have to start this
  4134.            after them.  */
  4135.           RELOC_SYMBOL(p) = (symptr->def_count + nsyms
  4136.                  - defined_global_sym_count
  4137.                  - undefined_global_sym_count
  4138.                  - global_indirect_count);
  4139.     }
  4140.       p++;
  4141.     }
  4142. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4143.     host_to_target_reloc_byte_order((struct relocation_info *) entry->textrel,
  4144.     entry->header.a_trsize/sizeof(struct relocation_info));
  4145. #endif
  4146.   mywrite (entry->textrel, 1, entry->header.a_trsize, outdesc);
  4147. }
  4148.  
  4149. void
  4150. copdatrel (entry)
  4151.      struct file_entry *entry;
  4152. {
  4153.   register struct relocation_info *p, *end;
  4154.   /* Relocate the address of the relocation.
  4155.      Old address is relative to start of the input file's data section.
  4156.      New address is relative to start of the output file's data section.  */
  4157.   register int reloc = entry->data_start_address - text_size;
  4158.  
  4159.   p = entry->datarel;
  4160.   end = (struct relocation_info *) (entry->header.a_drsize + (char *) p);
  4161.   while (p < end)
  4162.     {
  4163.       RELOC_ADDRESS(p) += reloc;
  4164.       if (RELOC_EXTERN_P(p))
  4165.     {
  4166.       register int symindex = RELOC_SYMBOL(p) * sizeof (struct nlist);
  4167.       symbol *symptr = ((symbol *)
  4168.                 (((struct nlist *)
  4169.                   (((char *)entry->symbols) + symindex))
  4170.                  ->n_un.n_name));
  4171.       int symtype;
  4172.  
  4173.       if (symindex >= entry->header.a_syms)
  4174.         fatal_with_file ("relocation symbolnum out of range in ", entry);
  4175.  
  4176. #ifdef N_INDR
  4177.       /* Resolve indirection.  */
  4178.       if ((symptr->defined & ~N_EXT) == N_INDR)
  4179.         symptr = (symbol *) symptr->value;
  4180. #endif
  4181.  
  4182.        symtype = symptr->defined & N_TYPE;
  4183.  
  4184.       if (force_common_definition
  4185.           || symtype == N_DATA || symtype == N_TEXT || symtype == N_ABS)
  4186.         {
  4187.           RELOC_EXTERN_P(p) = 0;
  4188.           RELOC_SYMBOL(p) = symtype;
  4189.         }
  4190.       else
  4191.         /* Debugger symbols come first, so have to start this
  4192.            after them.  */
  4193.         RELOC_SYMBOL(p)
  4194.           = (((symbol *)
  4195.           (((struct nlist *)
  4196.             (((char *)entry->symbols) + symindex))
  4197.            ->n_un.n_name))
  4198.          ->def_count
  4199.          + nsyms - defined_global_sym_count
  4200.          - undefined_global_sym_count
  4201.          - global_indirect_count);
  4202.     }
  4203.       p++;
  4204.     }
  4205. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4206.     host_to_target_reloc_byte_order((struct relocation_info *) entry->datarel,
  4207.     entry->header.a_drsize/sizeof(struct relocation_info));
  4208. #endif
  4209.   mywrite (entry->datarel, 1, entry->header.a_drsize, outdesc);
  4210. }
  4211.  
  4212. void write_file_syms ();
  4213. void write_string_table ();
  4214.  
  4215. /* Offsets and current lengths of symbol and string tables in output file. */
  4216.  
  4217. int symbol_table_offset;
  4218. int symbol_table_len;
  4219.  
  4220. /* Address in output file where string table starts.  */
  4221. int string_table_offset;
  4222.  
  4223. /* Offset within string table
  4224.    where the strings in `strtab_vector' should be written.  */
  4225. int string_table_len;
  4226.  
  4227. /* Total size of string table strings allocated so far,
  4228.    including strings in `strtab_vector'.  */
  4229. int strtab_size;
  4230.  
  4231. /* Vector whose elements are strings to be added to the string table.  */
  4232. char **strtab_vector;
  4233.  
  4234. /* Vector whose elements are the lengths of those strings.  */
  4235. int *strtab_lens;
  4236.  
  4237. /* Index in `strtab_vector' at which the next string will be stored.  */
  4238. int strtab_index;
  4239.  
  4240. /* Add the string NAME to the output file string table.
  4241.    Record it in `strtab_vector' to be output later.
  4242.    Return the index within the string table that this string will have.  */
  4243.  
  4244. int
  4245. assign_string_table_index (name)
  4246.      char *name;
  4247. {
  4248.   register int index = strtab_size;
  4249.   register int len = strlen (name) + 1;
  4250.  
  4251.   strtab_size += len;
  4252.   strtab_vector[strtab_index] = name;
  4253.   strtab_lens[strtab_index++] = len;
  4254.  
  4255.   return index;
  4256. }
  4257.  
  4258. FILE *outstream = (FILE *) 0;
  4259.  
  4260. /* Write the contents of `strtab_vector' into the string table.
  4261.    This is done once for each file's local&debugger symbols
  4262.    and once for the global symbols.  */
  4263.  
  4264. void
  4265. write_string_table ()
  4266. {
  4267.   register int i;
  4268.  
  4269.   lseek (outdesc, string_table_offset + string_table_len, 0);
  4270.  
  4271.   if (!outstream)
  4272.     outstream = fdopen (outdesc, "w");
  4273.  
  4274.   for (i = 0; i < strtab_index; i++)
  4275.     {
  4276.       fwrite (strtab_vector[i], 1, strtab_lens[i], outstream);
  4277.       string_table_len += strtab_lens[i];
  4278.     }
  4279.  
  4280.   fflush (outstream);
  4281.  
  4282.   /* Report I/O error such as disk full.  */
  4283.   if (ferror (outstream))
  4284.     perror_name (output_filename);
  4285. }
  4286.  
  4287. /* Write the symbol table and string table of the output file.  */
  4288.  
  4289. void
  4290. write_syms ()
  4291. {
  4292.   /* Number of symbols written so far.  */
  4293.   int syms_written = 0;
  4294.   register int i;
  4295.   register symbol *sp;
  4296.  
  4297.   /* Buffer big enough for all the global symbols.  One
  4298.      extra struct for each indirect symbol to hold the extra reference
  4299.      following. */
  4300.   struct nlist *buf
  4301.     = (struct nlist *) alloca ((defined_global_sym_count
  4302.                 + undefined_global_sym_count
  4303.                 + global_indirect_count)
  4304.                    * sizeof (struct nlist));
  4305.   /* Pointer for storing into BUF.  */
  4306.   register struct nlist *bufp = buf;
  4307.  
  4308.   /* Size of string table includes the bytes that store the size.  */
  4309.   strtab_size = sizeof strtab_size;
  4310.  
  4311.   symbol_table_offset = N_SYMOFF (outheader);
  4312.   symbol_table_len = 0;
  4313.   string_table_offset = N_STROFF (outheader);
  4314.   string_table_len = strtab_size;
  4315.  
  4316.   if (strip_symbols == STRIP_ALL)
  4317.     return;
  4318.  
  4319.   /* Write the local symbols defined by the various files.  */
  4320.  
  4321.   each_file (write_file_syms, &syms_written);
  4322.   file_close ();
  4323.  
  4324.   /* Now write out the global symbols.  */
  4325.  
  4326.   /* Allocate two vectors that record the data to generate the string
  4327.      table from the global symbols written so far.  This must include
  4328.      extra space for the references following indirect outputs. */
  4329.  
  4330.   strtab_vector = (char **) alloca ((num_hash_tab_syms
  4331.                      + global_indirect_count) * sizeof (char *));
  4332.   strtab_lens = (int *) alloca ((num_hash_tab_syms
  4333.                  + global_indirect_count) * sizeof (int));
  4334.   strtab_index = 0;
  4335.  
  4336.   /* Scan the symbol hash table, bucket by bucket.  */
  4337.  
  4338.   for (i = 0; i < TABSIZE; i++)
  4339.     for (sp = symtab[i]; sp; sp = sp->link)
  4340.       {
  4341.     struct nlist nl;
  4342.  
  4343.     nl.n_other = 0;
  4344.     nl.n_desc = 0;
  4345.  
  4346.     /* Compute a `struct nlist' for the symbol.  */
  4347.  
  4348.     if (sp->defined || sp->referenced)
  4349.       {
  4350.         /* common condition needs to be before undefined condition */
  4351.         /* because unallocated commons are set undefined in */
  4352.         /* digest_symbols */
  4353.         if (sp->defined > 1) /* defined with known type */
  4354.           {
  4355.         /* If the target of an indirect symbol has been
  4356.            defined and we are outputting an executable,
  4357.            resolve the indirection; it's no longer needed */
  4358.         if (!relocatable_output
  4359.             && ((sp->defined & N_TYPE) == N_INDR)
  4360.             && (((symbol *) sp->value)->defined > 1))
  4361.           {
  4362.             symbol *newsp = (symbol *) sp->value;
  4363.             nl.n_type = newsp->defined;
  4364.             nl.n_value = newsp->value;
  4365.           }
  4366.         else
  4367.           {
  4368.             nl.n_type = sp->defined;
  4369.             if (sp->defined != (N_INDR | N_EXT))
  4370.               nl.n_value = sp->value;
  4371.             else
  4372.               nl.n_value = 0;
  4373.           }
  4374.           }
  4375.         else if (sp->max_common_size) /* defined as common but not allocated. */
  4376.           {
  4377.         /* happens only with -r and not -d */
  4378.         /* write out a common definition */
  4379.         nl.n_type = N_UNDF | N_EXT;
  4380.         nl.n_value = sp->max_common_size;
  4381.           }
  4382.         else if (!sp->defined)          /* undefined -- legit only if -r */
  4383.           {
  4384.         nl.n_type = N_UNDF | N_EXT;
  4385.         nl.n_value = 0;
  4386.           }
  4387.         else
  4388.           fatal ("internal error: %s defined in mysterious way", sp->name);
  4389.  
  4390.         /* Allocate string table space for the symbol name.  */
  4391.  
  4392.         nl.n_un.n_strx = assign_string_table_index (sp->name);
  4393.  
  4394.         /* Output to the buffer and count it.  */
  4395.  
  4396.         *bufp++ = nl;
  4397.         syms_written++;
  4398.         if (nl.n_type == (N_INDR | N_EXT))
  4399.           {
  4400.         struct nlist xtra_ref;
  4401.         xtra_ref.n_type == N_EXT | N_UNDF;
  4402.         xtra_ref.n_un.n_strx
  4403.           = assign_string_table_index (((symbol *) sp->value)->name);
  4404.         xtra_ref.n_other = 0;
  4405.         xtra_ref.n_desc = 0;
  4406.         xtra_ref.n_value = 0;
  4407.         *bufp++ = xtra_ref;
  4408.         syms_written++;
  4409.           }
  4410.       }
  4411.       }
  4412.  
  4413.   /* Output the buffer full of `struct nlist's.  */
  4414.  
  4415.   lseek (outdesc, symbol_table_offset + symbol_table_len, 0);
  4416. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4417.   {
  4418.     int i;
  4419.  
  4420.     for (i = 0; i < bufp - buf; ++i)
  4421.       {
  4422.         fix_byte_order(&buf[i].n_un.n_name, sizeof(buf->n_un.n_name));
  4423.     fix_byte_order(&buf[i].n_desc, sizeof(buf->n_desc));
  4424.     fix_byte_order(&buf[i].n_value, sizeof(buf->n_value));
  4425.       }
  4426.   }
  4427. #endif
  4428.   mywrite (buf, sizeof (struct nlist), bufp - buf, outdesc);
  4429.   symbol_table_len += sizeof (struct nlist) * (bufp - buf);
  4430.  
  4431.   if (syms_written != nsyms)
  4432.     fatal ("internal error: wrong number of symbols written into output file", 0);
  4433.  
  4434.   if (symbol_table_offset + symbol_table_len != string_table_offset)
  4435.     fatal ("internal error: inconsistent symbol table length", 0);
  4436.  
  4437.   /* Now the total string table size is known, so write it.
  4438.      We are already positioned at the right place in the file.  */
  4439.  
  4440. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4441.   fix_byte_order(&strtab_size, sizeof(strtab_size));
  4442. #endif
  4443.  
  4444.   mywrite (&strtab_size, sizeof (int), 1, outdesc);  /* we're at right place */
  4445.  
  4446.   /* Write the strings for the global symbols.  */
  4447.  
  4448.   write_string_table ();
  4449. }
  4450.  
  4451. /* Write the local and debugger symbols of file ENTRY.
  4452.    Increment *SYMS_WRITTEN_ADDR for each symbol that is written.  */
  4453.  
  4454. /* Note that we do not combine identical names of local symbols.
  4455.    dbx or gdb would be confused if we did that.  */
  4456.  
  4457. void
  4458. write_file_syms (entry, syms_written_addr)
  4459.      struct file_entry *entry;
  4460.      int *syms_written_addr;
  4461. {
  4462.   register struct nlist *p = entry->symbols;
  4463.   register struct nlist *end = p + entry->header.a_syms / sizeof (struct nlist);
  4464.  
  4465.   /* Buffer to accumulate all the syms before writing them.
  4466.      It has one extra slot for the local symbol we generate here.  */
  4467.   struct nlist *buf
  4468.     = (struct nlist *) alloca (entry->header.a_syms + sizeof (struct nlist));
  4469.   register struct nlist *bufp = buf;
  4470.  
  4471.   /* Upper bound on number of syms to be written here.  */
  4472.   int max_syms = (entry->header.a_syms / sizeof (struct nlist)) + 1;
  4473.  
  4474.   /* Make tables that record, for each symbol, its name and its name's length.
  4475.      The elements are filled in by `assign_string_table_index'.  */
  4476.  
  4477.   strtab_vector = (char **) alloca (max_syms * sizeof (char *));
  4478.   strtab_lens = (int *) alloca (max_syms * sizeof (int));
  4479.   strtab_index = 0;
  4480.  
  4481.   /* Generate a local symbol for the start of this file's text.  */
  4482.  
  4483.   if (discard_locals != DISCARD_ALL)
  4484.     {
  4485.       struct nlist nl;
  4486.  
  4487.       nl.n_type = N_TEXT;
  4488.       nl.n_un.n_strx = assign_string_table_index (entry->local_sym_name);
  4489.       nl.n_value = entry->text_start_address;
  4490.       nl.n_desc = 0;
  4491.       nl.n_other = 0;
  4492.       *bufp++ = nl;
  4493.       (*syms_written_addr)++;
  4494.       entry->local_syms_offset = *syms_written_addr * sizeof (struct nlist);
  4495.     }
  4496.  
  4497.   /* Read the file's string table.  */
  4498.  
  4499.   entry->strings = (char *) alloca (entry->string_size);
  4500.   read_entry_strings (file_open (entry), entry);
  4501.  
  4502.   for (; p < end; p++)
  4503.     {
  4504.       register int type = p->n_type;
  4505.       register int write = 0;
  4506.  
  4507.       /* WRITE gets 1 for a non-global symbol that should be written.  */
  4508.  
  4509.  
  4510.       if (SET_ELEMENT_P (type))    /* This occurs even if global.  These */
  4511.                 /* types of symbols are never written */
  4512.                 /* globally, though they are stored */
  4513.                 /* globally.  */
  4514.         write = relocatable_output;
  4515.       else if (!(type & (N_STAB | N_EXT)))
  4516.         /* ordinary local symbol */
  4517.     write = ((discard_locals != DISCARD_ALL)
  4518.          && !(discard_locals == DISCARD_L &&
  4519.               (p->n_un.n_strx + entry->strings)[0] == LPREFIX)
  4520.          && type != N_WARNING);
  4521.       else if (!(type & N_EXT))
  4522.     /* debugger symbol */
  4523.         write = (strip_symbols == STRIP_NONE);
  4524.  
  4525.       if (write)
  4526.     {
  4527.       /* If this symbol has a name,
  4528.          allocate space for it in the output string table.  */
  4529.  
  4530.       if (p->n_un.n_strx)
  4531.         p->n_un.n_strx = assign_string_table_index (p->n_un.n_strx
  4532.                             + entry->strings);
  4533.  
  4534.       /* Output this symbol to the buffer and count it.  */
  4535.  
  4536.       *bufp++ = *p;
  4537.       (*syms_written_addr)++;
  4538.     }
  4539.     }
  4540.  
  4541.   /* All the symbols are now in BUF; write them.  */
  4542.  
  4543.   lseek (outdesc, symbol_table_offset + symbol_table_len, 0);
  4544. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4545.   {
  4546.     int i;
  4547.  
  4548.     for (i = 0; i < bufp - buf; ++i)
  4549.       {
  4550.     fix_byte_order(&buf[i].n_un.n_name, sizeof(buf->n_un.n_name));
  4551.     fix_byte_order(&buf[i].n_desc, sizeof(buf->n_desc));
  4552.     fix_byte_order(&buf[i].n_value, sizeof(buf->n_value));
  4553.       }
  4554.   }
  4555. #endif
  4556.   mywrite (buf, sizeof (struct nlist), bufp - buf, outdesc);
  4557.   symbol_table_len += sizeof (struct nlist) * (bufp - buf);
  4558.  
  4559.   /* Write the string-table data for the symbols just written,
  4560.      using the data in vectors `strtab_vector' and `strtab_lens'.  */
  4561.  
  4562.   write_string_table ();
  4563.   entry->strings = 0;        /* Since it will dissapear anyway.  */
  4564. }
  4565.  
  4566. /* Copy any GDB symbol segments from the input files to the output file.
  4567.    The contents of the symbol segment is copied without change
  4568.    except that we store some information into the beginning of it.  */
  4569.  
  4570. void write_file_symseg ();
  4571.  
  4572. void
  4573. write_symsegs ()
  4574. {
  4575.   each_file (write_file_symseg, 0);
  4576. }
  4577.  
  4578. void
  4579. write_file_symseg (entry)
  4580.      struct file_entry *entry;
  4581. {
  4582.   char buffer[4096];
  4583.   struct symbol_root root;
  4584.   int indesc;
  4585.   int len;
  4586.  
  4587.   if (entry->symseg_offset == 0)
  4588.     return;
  4589.  
  4590.   /* This entry has a symbol segment.  Read the root of the segment.  */
  4591.  
  4592.   indesc = file_open (entry);
  4593.   lseek (indesc, entry->symseg_offset + entry->starting_offset, 0);
  4594.   if (sizeof root != read (indesc, &root, sizeof root))
  4595.     fatal_with_file ("premature end of file in symbol segment of ", entry);
  4596.  
  4597. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4598.   fix_symbol_root_byte_order(&root);
  4599. #endif
  4600.  
  4601.   /* Store some relocation info into the root.  */
  4602.  
  4603.   root.ldsymoff = entry->local_syms_offset;
  4604.   root.textrel = entry->text_start_address;
  4605.   root.datarel = entry->data_start_address - entry->header.a_text;
  4606.   root.bssrel = entry->bss_start_address
  4607.     - entry->header.a_text - entry->header.a_data;
  4608.   root.databeg = entry->data_start_address - root.datarel;
  4609.   root.bssbeg = entry->bss_start_address - root.bssrel;
  4610.  
  4611.   /* Write the modified root into the output file.  */
  4612.  
  4613. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4614.   fix_symbol_root_byte_order(&root);
  4615. #endif
  4616.   mywrite (&root, sizeof root, 1, outdesc);
  4617.  
  4618.   /* Copy the rest of the symbol segment unchanged.  */
  4619.  
  4620.   if (entry->superfile)
  4621.     {
  4622.       /* Library member: number of bytes to copy is determined
  4623.      from the member's total size.  */
  4624.  
  4625.       int total = entry->total_size - entry->symseg_offset - sizeof root;
  4626.  
  4627.       while (total > 0)
  4628.     {
  4629.       len = read (indesc, buffer, min (sizeof buffer, total));
  4630.  
  4631.       if (len != min (sizeof buffer, total))
  4632.         fatal_with_file ("premature end of file in symbol segment of ", entry);
  4633.       total -= len;
  4634.       mywrite (buffer, len, 1, outdesc);
  4635.     }
  4636.     }
  4637.   else
  4638.     {
  4639.       /* A separate file: copy until end of file.  */
  4640.  
  4641.       while (len = read (indesc, buffer, sizeof buffer))
  4642.     {
  4643.       mywrite (buffer, len, 1, outdesc);
  4644.       if (len < sizeof buffer)
  4645.         break;
  4646.     }
  4647.     }
  4648.  
  4649.   file_close ();
  4650. }
  4651.  
  4652. /* Create the symbol table entries for `etext', `edata' and `end'.  */
  4653.  
  4654. void
  4655. symtab_init ()
  4656. {
  4657. #ifndef nounderscore
  4658.   edata_symbol = getsym ("_edata");
  4659.   etext_symbol = getsym ("_etext");
  4660.   end_symbol = getsym ("_end");
  4661. #else
  4662.   edata_symbol = getsym ("edata");
  4663.   etext_symbol = getsym ("etext");
  4664.   end_symbol = getsym ("end");
  4665. #endif
  4666.  
  4667. #if TARGET_MACHINE==TARGET_SUN4 || TARGET_MACHINE==TARGET_SUN3 || TARGET_MACHINE==TARGET_SUN2
  4668.   {
  4669.     symbol *dynamic_symbol = getsym ("__DYNAMIC");
  4670.     dynamic_symbol->defined = N_ABS | N_EXT;
  4671.     dynamic_symbol->referenced = 1;
  4672.     dynamic_symbol->value = 0;
  4673.   }
  4674. #endif
  4675. #if TARGET_MACHINE==TARGET_SEQUENT
  4676.   {
  4677.     symbol *_387_flt_symbol = getsym ("_387_flt");
  4678.     _387_flt_symbol->defined = N_ABS | N_EXT;
  4679.     _387_flt_symbol->referenced = 1;
  4680.     _387_flt_symbol->value = 0;
  4681.   }
  4682. #endif
  4683.  
  4684.   edata_symbol->defined = N_DATA | N_EXT;
  4685.   etext_symbol->defined = N_TEXT | N_EXT;
  4686.   end_symbol->defined = N_BSS | N_EXT;
  4687.  
  4688.   edata_symbol->referenced = 1;
  4689.   etext_symbol->referenced = 1;
  4690.   end_symbol->referenced = 1;
  4691. }
  4692.  
  4693. /* Compute the hash code for symbol name KEY.  */
  4694.  
  4695. int
  4696. hash_string (key)
  4697.      char *key;
  4698. {
  4699.   register char *cp;
  4700.   register int k;
  4701.  
  4702.   cp = key;
  4703.   k = 0;
  4704.   while (*cp)
  4705.     k = (((k << 1) + (k >> 14)) ^ (*cp++)) & 0x3fff;
  4706.  
  4707.   return k;
  4708. }
  4709.  
  4710. /* Get the symbol table entry for the global symbol named KEY.
  4711.    Create one if there is none.  */
  4712.  
  4713. symbol *
  4714. getsym (key)
  4715.      char *key;
  4716. {
  4717.   register int hashval;
  4718.   register symbol *bp;
  4719.  
  4720.   /* Determine the proper bucket.  */
  4721.  
  4722.   hashval = hash_string (key) % TABSIZE;
  4723.  
  4724.   /* Search the bucket.  */
  4725.  
  4726.   for (bp = symtab[hashval]; bp; bp = bp->link)
  4727.     if (! strcmp (key, bp->name))
  4728.       return bp;
  4729.  
  4730.   /* Nothing was found; create a new symbol table entry.  */
  4731.  
  4732.   bp = (symbol *) xmalloc (sizeof (symbol));
  4733.   bp->refs = 0;
  4734.   bp->name = (char *) xmalloc (strlen (key) + 1);
  4735.   strcpy (bp->name, key);
  4736.   bp->defined = 0;
  4737.   bp->referenced = 0;
  4738.   bp->trace = 0;
  4739.   bp->value = 0;
  4740.   bp->max_common_size = 0;
  4741.   bp->warning = 0;
  4742.   bp->undef_refs = 0;
  4743.   bp->multiply_defined = 0;
  4744.  
  4745.   /* Add the entry to the bucket.  */
  4746.  
  4747.   bp->link = symtab[hashval];
  4748.   symtab[hashval] = bp;
  4749.  
  4750.   ++num_hash_tab_syms;
  4751.  
  4752.   return bp;
  4753. }
  4754.  
  4755. /* Like `getsym' but return 0 if the symbol is not already known.  */
  4756.  
  4757. symbol *
  4758. getsym_soft (key)
  4759.      char *key;
  4760. {
  4761.   register int hashval;
  4762.   register symbol *bp;
  4763.  
  4764.   /* Determine which bucket.  */
  4765.  
  4766.   hashval = hash_string (key) % TABSIZE;
  4767.  
  4768.   /* Search the bucket.  */
  4769.  
  4770.   for (bp = symtab[hashval]; bp; bp = bp->link)
  4771.     if (! strcmp (key, bp->name))
  4772.       return bp;
  4773.  
  4774.   return 0;
  4775. }
  4776.  
  4777. /* Report a fatal error.
  4778.    STRING is a printf format string and ARG is one arg for it.  */
  4779.  
  4780. void
  4781. fatal (string, arg)
  4782.      char *string, *arg;
  4783. {
  4784.   fprintf (stderr, "ld: ");
  4785.   fprintf (stderr, string, arg);
  4786.   fprintf (stderr, "\n");
  4787.   exit (1);
  4788. }
  4789.  
  4790. /* Report a fatal error.  The error message is STRING
  4791.    followed by the filename of ENTRY.  */
  4792.  
  4793. void
  4794. fatal_with_file (string, entry)
  4795.      char *string;
  4796.      struct file_entry *entry;
  4797. {
  4798.   fprintf (stderr, "ld: ");
  4799.   fprintf (stderr, string);
  4800.   print_file_name (entry, stderr);
  4801.   fprintf (stderr, "\n");
  4802.   exit (1);
  4803. }
  4804.  
  4805. /* Report a fatal error using the message for the last failed system call,
  4806.    followed by the string NAME.  */
  4807.  
  4808. void
  4809. perror_name (name)
  4810.      char *name;
  4811. {
  4812.   extern int errno, sys_nerr;
  4813.   extern char *sys_errlist[];
  4814.   char *s;
  4815.  
  4816.   if (errno < sys_nerr)
  4817.     s = concat ("", sys_errlist[errno], " for %s");
  4818.   else
  4819.     s = "cannot open %s";
  4820.   fatal (s, name);
  4821. }
  4822.  
  4823. /* Report a fatal error using the message for the last failed system call,
  4824.    followed by the name of file ENTRY.  */
  4825.  
  4826. void
  4827. perror_file (entry)
  4828.      struct file_entry *entry;
  4829. {
  4830.   extern int errno, sys_nerr;
  4831.   extern char *sys_errlist[];
  4832.   char *s;
  4833.  
  4834.   if (errno < sys_nerr)
  4835.     s = concat ("", sys_errlist[errno], " for ");
  4836.   else
  4837.     s = "cannot open ";
  4838.   fatal_with_file (s, entry);
  4839. }
  4840.  
  4841. /* Report a nonfatal error.
  4842.    STRING is a format for printf, and ARG1 ... ARG3 are args for it.  */
  4843.  
  4844. void
  4845. error (string, arg1, arg2, arg3)
  4846.      char *string, *arg1, *arg2, *arg3;
  4847. {
  4848.   fprintf (stderr, "%s: ", progname);
  4849.   fprintf (stderr, string, arg1, arg2, arg3);
  4850.   fprintf (stderr, "\n");
  4851. }
  4852.  
  4853.  
  4854. /* Output COUNT*ELTSIZE bytes of data at BUF
  4855.    to the descriptor DESC.  */
  4856.  
  4857. void
  4858. mywrite (buf, count, eltsize, desc)
  4859.      char *buf;
  4860.      int count;
  4861.      int eltsize;
  4862.      int desc;
  4863. {
  4864.   register int val;
  4865.   register int bytes = count * eltsize;
  4866.  
  4867.   while (bytes > 0)
  4868.     {
  4869.       val = write (desc, buf, bytes);
  4870.       if (val <= 0)
  4871.     perror_name (output_filename);
  4872.       buf += val;
  4873.       bytes -= val;
  4874.     }
  4875. }
  4876.  
  4877. /* Output PADDING zero-bytes to descriptor OUTDESC.
  4878.    PADDING may be negative; in that case, do nothing.  */
  4879.  
  4880. void
  4881. padfile (padding, outdesc)
  4882.      int padding;
  4883.      int outdesc;
  4884. {
  4885.   register char *buf;
  4886.   if (padding <= 0)
  4887.     return;
  4888.  
  4889.   buf = (char *) alloca (padding);
  4890.   bzero (buf, padding);
  4891.   mywrite (buf, padding, 1, outdesc);
  4892. }
  4893.  
  4894. /* Return a newly-allocated string
  4895.    whose contents concatenate the strings S1, S2, S3.  */
  4896.  
  4897. char *
  4898. concat (s1, s2, s3)
  4899.      char *s1, *s2, *s3;
  4900. {
  4901.   register int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
  4902.   register char *result = (char *) xmalloc (len1 + len2 + len3 + 1);
  4903.  
  4904.   strcpy (result, s1);
  4905.   strcpy (result + len1, s2);
  4906.   strcpy (result + len1 + len2, s3);
  4907.   result[len1 + len2 + len3] = 0;
  4908.  
  4909.   return result;
  4910. }
  4911.  
  4912. /* Parse the string ARG using scanf format FORMAT, and return the result.
  4913.    If it does not parse, report fatal error
  4914.    generating the error message using format string ERROR and ARG as arg.  */
  4915.  
  4916. int
  4917. parse (arg, format, error)
  4918.      char *arg, *format;
  4919. {
  4920.   int x;
  4921.   if (1 != sscanf (arg, format, &x))
  4922.     fatal (error, arg);
  4923.   return x;
  4924. }
  4925.  
  4926. /* Like malloc but get fatal error if memory is exhausted.  */
  4927.  
  4928. int
  4929. xmalloc (size)
  4930.      int size;
  4931. {
  4932.   register int result = malloc (size);
  4933.   if (!result)
  4934.     fatal ("virtual memory exhausted", 0);
  4935.   return result;
  4936. }
  4937.  
  4938. /* Like realloc but get fatal error if memory is exhausted.  */
  4939.  
  4940. int
  4941. xrealloc (ptr, size)
  4942.      char *ptr;
  4943.      int size;
  4944. {
  4945.   register int result = realloc (ptr, size);
  4946.   if (!result)
  4947.     fatal ("virtual memory exhausted", 0);
  4948.   return result;
  4949. }
  4950.  
  4951. #ifdef USG
  4952.  
  4953. void
  4954. bzero (p, n)
  4955.      char *p;
  4956. {
  4957.   memset (p, 0, n);
  4958. }
  4959.  
  4960. void
  4961. bcopy (from, to, n)
  4962.      char *from, *to;
  4963. {
  4964.   memcpy (to, from, n);
  4965. }
  4966.  
  4967. getpagesize ()
  4968. {
  4969.   return (4096);
  4970. }
  4971.  
  4972. #endif
  4973.  
  4974.  
  4975. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4976.  
  4977. static void
  4978. fix_byte_order(p, n)
  4979.     char *p;
  4980.     int n;
  4981. {
  4982.     char t;
  4983.  
  4984.     switch (n) {
  4985.  
  4986.     case 1:
  4987.     return;
  4988.  
  4989.     case 2:
  4990.     t = p[0];
  4991.     p[0] = p[1];
  4992.     p[1] = t;
  4993.     return;
  4994.  
  4995.     case 4:
  4996.     t = p[0];
  4997.     p[0] = p[3];
  4998.     p[3] = t;
  4999.     t = p[1];
  5000.     p[1] = p[2];
  5001.     p[2] = t;
  5002.     return;
  5003.  
  5004.     default:
  5005.     fatal("Internal Error in fix_byte_order, n = %d\n", 0);
  5006.     }
  5007. }
  5008.  
  5009. static void
  5010. fix_exec_header_byte_order(execP)
  5011.     struct exec *execP;
  5012. {
  5013.  
  5014. #if TARGET_MACHINE==TARGET_SUN4
  5015.     if (N_BADMAG(*execP)) {
  5016.     u_char c = * (u_char *) execP;
  5017.     execP->a_dynamic = c & 1;
  5018.     execP->a_toolversion = c >> 1;
  5019.     } else {
  5020.     u_char c = execP->a_toolversion | (execP->a_dynamic << 7);
  5021.     * (u_char *) execP = c;
  5022.     }
  5023. #else
  5024.     fix_byte_order(&execP->a_machtype, sizeof(execP->a_machtype));
  5025. #endif
  5026.     fix_byte_order(&execP->a_magic,    sizeof(execP->a_magic));
  5027.     fix_byte_order(&execP->a_text,     sizeof(execP->a_text));
  5028.     fix_byte_order(&execP->a_data,     sizeof(execP->a_data));
  5029.     fix_byte_order(&execP->a_bss,      sizeof(execP->a_bss));
  5030.     fix_byte_order(&execP->a_syms,     sizeof(execP->a_syms));
  5031.     fix_byte_order(&execP->a_entry,    sizeof(execP->a_entry));
  5032.     fix_byte_order(&execP->a_trsize,   sizeof(execP->a_trsize));
  5033.     fix_byte_order(&execP->a_drsize,   sizeof(execP->a_drsize));
  5034.     return;
  5035. }
  5036.  
  5037. static void
  5038. fix_symbol_byte_order(p, size)
  5039.     struct nlist *p;
  5040.     int size;
  5041. {
  5042.     int n;
  5043.  
  5044.     for (n = size / sizeof(*p); --n >= 0; ++p) {
  5045.     fix_byte_order(&p->n_un, sizeof(p->n_un));
  5046.     fix_byte_order(&p->n_desc, sizeof(p->n_desc));
  5047.     fix_byte_order(&p->n_value, sizeof(p->n_value));
  5048.     }
  5049.     return;
  5050. }
  5051.  
  5052. static void
  5053. target_to_host_reloc_byte_order(relocP, nrelocs)
  5054.     struct relocation_info *relocP;
  5055.     int nrelocs;
  5056. {
  5057.     u_char c[4];
  5058.  
  5059. #if TARGET_BYTE_ORDER==BIG_ENDIAN && HOST_BYTE_ORDER==LITTLE_ENDIAN
  5060.     for (; --nrelocs >= 0; ++relocP) {
  5061.     fix_byte_order(&relocP->r_address, sizeof(relocP->r_address));
  5062.     c[0] = ((u_char *) relocP)[4];
  5063.     c[1] = ((u_char *) relocP)[5];
  5064.     c[2] = ((u_char *) relocP)[6];
  5065.     c[3] = ((u_char *) relocP)[7];
  5066.     ((u_long *) relocP)[1] = 0;
  5067. #if TARGET_MACHINE==TARGET_SUN4
  5068.     relocP->r_index = (c[0] << 16) | (c[1] << 8) | c[2];
  5069.     relocP->r_type = (enum reloc_type) (c[3] & 0x1f);
  5070.     relocP->r_extern = (c[3] & 0x80) >> 7;
  5071.     fix_byte_order(&relocP->r_addend, sizeof(relocP->r_addend));
  5072. #else
  5073.     relocP->r_symbolnum = (c[0] << 16) | (c[1] << 8) | c[2];
  5074.     relocP->r_pcrel = (c[3] >> 7) & 1;
  5075.     relocP->r_length = (c[3] >> 5) & 3;
  5076.     relocP->r_extern = (c[3] >> 4) & 1;
  5077. #endif
  5078.     }
  5079. #endif
  5080.     return;
  5081. }
  5082.  
  5083. static void
  5084. host_to_target_reloc_byte_order(relocP, nrelocs)
  5085.     struct relocation_info *relocP;
  5086.     int nrelocs;
  5087. {
  5088.     u_char c[4];
  5089.  
  5090. #if TARGET_BYTE_ORDER==BIG_ENDIAN && HOST_BYTE_ORDER==LITTLE_ENDIAN
  5091.     for (; --nrelocs >= 0; ++relocP) {
  5092.     fix_byte_order(&relocP->r_address, sizeof(relocP->r_address));
  5093. #if TARGET_MACHINE==TARGET_SUN4
  5094.     c[0] = (relocP->r_index >> 16);
  5095.     c[1] = (relocP->r_index >> 8);
  5096.     c[2] = relocP->r_index;
  5097.     c[3] = (u_char) relocP->r_type | (relocP->r_extern << 7);
  5098.     fix_byte_order(&relocP->r_addend, sizeof(relocP->r_addend));
  5099. #else
  5100.     c[0] = (relocP->r_symbolnum >> 16);
  5101.     c[1] = (relocP->r_symbolnum >> 8);
  5102.     c[2] = relocP->r_symbolnum;
  5103.     c[3] = (relocP->r_pcrel << 7) |
  5104.         (relocP->r_length << 5) | (relocP->r_extern << 4);
  5105. #endif
  5106.     ((u_char *) relocP)[4] = c[0];
  5107.     ((u_char *) relocP)[5] = c[1];
  5108.     ((u_char *) relocP)[6] = c[2];
  5109.     ((u_char *) relocP)[7] = c[3];
  5110.     }
  5111. #endif
  5112.     return;
  5113. }
  5114.  
  5115. static void
  5116. fix_symbol_root_byte_order(p)
  5117.     struct symbol_root *p;
  5118. {
  5119.  
  5120.     fix_byte_order(&p->format, sizeof(p->format));
  5121.     fix_byte_order(&p->length, sizeof(p->length));
  5122.     fix_byte_order(&p->ldsymoff, sizeof(p->ldsymoff));
  5123.     fix_byte_order(&p->textrel, sizeof(p->textrel));
  5124.     fix_byte_order(&p->datarel, sizeof(p->datarel));
  5125.     fix_byte_order(&p->bssrel, sizeof(p->bssrel));
  5126.     fix_byte_order(&p->filename, sizeof(p->filename));
  5127.     fix_byte_order(&p->filedir, sizeof(p->filedir));
  5128.     fix_byte_order(&p->blockvector, sizeof(p->blockvector));
  5129.     fix_byte_order(&p->typevector, sizeof(p->typevector));
  5130.     fix_byte_order(&p->language, sizeof(p->language));
  5131.     fix_byte_order(&p->version, sizeof(p->version));
  5132.     fix_byte_order(&p->compilation, sizeof(p->compilation));
  5133.     fix_byte_order(&p->databeg, sizeof(p->databeg));
  5134.     fix_byte_order(&p->bssbeg, sizeof(p->bssbeg));
  5135.     fix_byte_order(&p->sourcevector, sizeof(p->sourcevector));
  5136.     return;
  5137. }
  5138.  
  5139. #endif
  5140.  
  5141.